home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-15 / copro15.zip / COPRO15.TXT < prev   
Text File  |  1993-02-09  |  251KB  |  4,528 lines

  1.          EVERYTHING YOU ALWAYS WANTED TO KNOW ABOUT MATH COPROCESSORS
  2.  
  3. This document has been created to provide the net.community with some
  4. detailed information about mathematical coprocessors for the Intel 80x86 CPU
  5. family. It may also help to answer some of the FAQs (frequently asked
  6. questions) about this topic. The primary focus of this document is on 80387-
  7. compatible chips, but there is also some information on the other chips in
  8. the 80x87 family and the Weitek family of coprocessors. Care was taken to
  9. make the information included as accurate as possible. If you think you have
  10. discovered erroneous information in this text, or think that a certain detail
  11. needs to be clarified, or want to suggest additions, feel free to contact me
  12. at:
  13.  
  14.          S_JUFFA@IRAVCL.IRA.UKA.DE
  15.  
  16.          or at my SnailMail address:
  17.  
  18.          Norbert Juffa
  19.          Wielandtstr. 14
  20.          7500 Karlsruhe 1
  21.          Germany
  22.  
  23. This is the fifth version of this document (dated 01-13-93) and I'd like
  24. to thank those who have helped improving it by commenting on the previous
  25. versions:
  26.  
  27.          Fred Dunlap (cyrix!fred@texsun.Central.Sun.COM), Peter Forsberg
  28.          (peter@vnet.ibm.com), Richard Krehbiel (richk@grevyn.com), Arto
  29.          Viitanen (av@cs.uta.fi), Jerry Whelan (guru@stasi.bradley.edu),
  30.          Eric Johnson (johnson%camax01@uunet.UU.NET), Warren Ferguson
  31.          (ferguson@seas.smu.edu), Bengt Ask (f89ba@efd.lth.se), Thomas Hoberg
  32.          (tmh@prosun.first.gmd.de), Nhuan Doduc (ndoduc@framentec.fr), John
  33.          Levine (johnl@iecc.cambridge.ma.us), David Hough (dgh@validgh.com),
  34.          Duncan Murdoch (dmurdoch@mast.QueensU.CA), Benjamin Eitan
  35.          (benny.iil.intel.com)
  36.  
  37. A very special thanks goes to David Ruggiero (osiris@halcyon.halcyon.com),
  38. who did a great job editing and formatting this article. Thanks David!
  39.  
  40.  
  41. Contents of this document
  42. -------------------------
  43.  
  44. 1)  What are math coprocessors?
  45. 2)  How PC programs use a math coprocessor
  46. 3)  Which applications benefit from a math coprocessor
  47. 4)  Potential performance gains with a math coprocessor
  48. 5)  How various math coprocessors work
  49. 6)  Coprocessor emulator software
  50. 7)  Installing a math coprocessor
  51. 8)  Detailed description and specifications for all available math
  52.     coprocessor chips
  53. 9)  Finding out which coprocessor you have (the COMPTEST program)
  54. 10) Current coprocessor prices and purchasing advice
  55. 11) The coprocessor benchmark programs (performance comparisons of
  56.     available math coprocessors using various CPUs)
  57. 12) Clock-cycle timings for each coprocessor instruction
  58. 13) Accuracy tests and IEEE-754 conformance for various coprocessors
  59. 14) Accuracy of transcendental function calculations for various coprocessors
  60. 15) Compatibility tests with Intel's 387DX / the SMDIAG program
  61. 16) References (literature)
  62. 17) Addresses of manufacturers of math coprocessors
  63. 18) Appendix A: Test programs for partial compatibility and accuracy checks
  64. 19) Appendix B: Benchmark programs TRNSFORM and PEAKFLOP
  65.  
  66.  
  67.  
  68. ===========================
  69. What are math coprocessors?
  70. ===========================
  71.  
  72. A coprocessor in the traditional sense is a processor, separate from the main
  73. CPU, that extends the capabilities of a CPU in a transparent manner. This
  74. means that from the program's (and programmer's) point of view, the CPU and
  75. coprocessor together look like a single, unified machine.
  76.  
  77. The 80x87 family of math coprocessors (also known as MCPs [Math
  78. CoProcessors], NDPs [Numerical Data Processors], NPXs [Numerical Processor
  79. eXtensions], or FPUs [Floating-Point Units], or simply "math chips") are
  80. typical examples of such coprocessors. The 80x86 CPUs, with the exception of
  81. the 80486 (which has a built-in FPU) can only handle 8, 16, or 32 bit
  82. integers as their basic data types. However, many PC-based applications
  83. require the use of not only integers, but floating-point numbers. Simply put,
  84. the use of floating-point numbers enables a binary representation of not only
  85. integers, but also fractional values over a wide range. A common application
  86. of floating-point numbers is in scientific applications, where very small
  87. (e.g., Planck's constant) and very large numbers (e.g., speed of light) must
  88. be accurately expressed. But floating-point numbers are also useful for
  89. business applications such as computing interest, and in the geometric
  90. calculations inherent in CAD/CAM processing.
  91.  
  92. Because the instruction sets of all 80x86 CPUs directly support only integers
  93. and calculations upon integers, floating-point numbers and operations on them
  94. must be programmed indirectly by using series of CPU integer instructions.
  95. This means that computations when floating-point numbers are used are far
  96. slower than normal, integer calculations. And this is where the 80x87
  97. coprocessors come in: adding an 80x87 to an 80x86-based system augments the
  98. CPU architecture with eight floating-point registers, five additional data
  99. types and over 70 additional instructions, all designed to deal directly with
  100. floating-point numbers as a basic data type. This removes the 'penalty' for
  101. floating-point computations, and greatly increases overall system performance
  102. for applications which depend heavily on these calculations.
  103.  
  104. In addition to being able to quickly execute load/store operations on
  105. floating-point numbers, the 80x87 coprocessors can directly perform all the
  106. basic arithmetic operation on them. Besides "knowing" how to add, subtract,
  107. multiply and divide floating-point numbers, they can also operate on them to
  108. perform comparisons, square roots, transcendental functions (such as logarithms
  109. and sine/cosine/tangent), and compute their absolute value and remainder.
  110.  
  111. Like most things in life, floating-point arithmetic has been standardized.
  112. The relevant standard (to which I will refer quite often in this document) is
  113. the "IEEE-754 Standard for Binary Floating-Point Arithmetic" [10,11]. The
  114. standard specifies numeric formats, value sets and how the basic arithmetic
  115. (+,-,*,/,sqrt, remainder) has to work. All the coprocessors covered in this
  116. document claim full or at least partial compliance with the IEEE-754
  117. standard.
  118.  
  119.  
  120.  
  121. =================================================
  122. How PC programs use 80x87 and Weitek coprocessors
  123. =================================================
  124.  
  125. The basic data type used by all 80x87 coprocessors is an 80-bit long
  126. floating-point number. This data type (called "temporary real" or "double
  127. extended precision") can directly represent numbers which range in size
  128. between 3.36*10^-4932 and 1.19*10^4932 (3.65*10^-4951 to 1.19*10^4932
  129. including denormal numbers) where '^' denotes the power operator. (For those
  130. familiar with floating-point formats, this format has 64 mantissa bits, 15
  131. exponent bits and 1 sign bit, for the total of 80 bits.) This format provides
  132. a precision of about 19 decimal places. 80x87s can also handle additional
  133. data types that are converted to/from the internal format upon being loaded
  134. or stored to/from the coprocessor. These include 16 bit, 32 bit, and 64 bit
  135. integers as well as a 18 digit BCD (binary coded decimal) data type occupying
  136. 10 bytes and providing 18 decimal digits.
  137.  
  138. The 80x87 also supports two additional floating-point types. The short real
  139. data type (also called "single-precision") has 32 bits that split into 23
  140. mantissa bits, 8 exponent bit and a sign bit. By using the "hidden bit"
  141. technique, the effective length of the mantissa is increased to 24 bits. (The
  142. hidden bit technique exploits the fact that for normalized floating-point
  143. numbers, the mantissa m always is in the range 1 <= m < 2. Since the first
  144. mantissa bit represents the integer part of the mantissa, it is always set
  145. for normalized numbers, and therefore need not be stored, as it is guaranteed
  146. to always be 1.) The IEEE single-precision format provides a precision of
  147. about 6-7 decimal places and can represent numbers between 1.17*10^-38 and
  148. 3.40*10^38 (1.40*10^-45 to 3.40*10^38 including denormal numbers). The long
  149. real, or double-precision, data type has 64 bits, consisting of 52 mantissa
  150. bits, 11 exponent bits, and the sign bit. It provides 15-16 decimal digits of
  151. precision and can handle numbers from 2.22*10^-308 to 1.79*10^308 (4.94*10^-
  152. 324 to 1.79*10^308 including denormal numbers). (This format also uses the
  153. hidden bit technique to provide effectively 53 mantissa bits.)
  154.  
  155. The eight registers in the 80x87 are organized in a stack-like manner which
  156. takes some time getting used to if one programs the coprocessor directly in
  157. assembly language. However, nowadays the compilers or interpreters for most
  158. high level languages (HLLs) can give a programmer easy access to the
  159. coprocessor's data types and use their instructions, so there is not much
  160. need to deal directly with the rather unusual architecture of the 80x87.
  161.  
  162.  
  163. The architecture of the Weitek chips differs significantly from the 80x87.
  164. Strictly speaking, the Weitek Abacus 3167 and 4167 are not coprocessors in
  165. that they do not transparently extend the CPU architecture; rather, they
  166. could be described as highly-specialized, memory-mapped IO devices. But as
  167. the term "coprocessor" has been traditionally used for these chips, they will
  168. be referred to as such here.
  169.  
  170. The Weitek coprocessors have a RISC-like architecture which has been tuned
  171. for maximum performance. Only a small instruction set has been implemented in
  172. the chip, but each instruction executes at a very high speed (usually only a
  173. few clock cycles each). Instructions available include load/store, add,
  174. subtract, subtract reverse, multiply, multiply and negate, multiply and
  175. accumulate, multiply and take absolute value, divide reverse, negate,
  176. absolute value, compare/test, convert fix/float, and square root. In contrast
  177. to the 80x87 family, the Weitek Abacus does not support a double extended
  178. format, has no built-in transcendental functions, and does not support
  179. denormals. The resources required to implement such features have instead
  180. been devoted to implement the basic arithmetic operations as fast as
  181. possible.
  182.  
  183. While the 80x87 coprocessors perform all internal calculations in double
  184. extended precision and therefore have about the same performance for single
  185. and double-precision calculations, the Weitek features explicit single and
  186. double-precision operations. For applications that require only single-
  187. precision operations, the Weitek can therefore provide very high performance,
  188. as single-precision operations are about twice as fast as their double-
  189. precision counterparts. Also, since the Weitek Abacus has more registers than
  190. the 80x87 coprocessors (31 versus 8), values can be kept in registers more
  191. often and have to be loaded from memory less frequently. This also leads to
  192. performance gains.
  193.  
  194. The Weitek's register file consists of 31 32-bit registers, each one capable
  195. of holding an IEEE single-precision number. Pairs of consecutive single-
  196. precision registers can also be used as 64-bit IEEE double-precision
  197. registers; thus there are 15 double-precision registers. The Weitek register
  198. file has the standard organization like the register files in the 80386, not
  199. the special stack-like organization of the 80x87 coprocessors.
  200.  
  201. To the main CPU, the Weitek Abacus appears as a 64 KB block of memory
  202. starting at physical address 0C0000000h. Each address in this range
  203. corresponds to a coprocessor instruction. Accessing a specified memory
  204. location within this block with a MOV instruction causes the corresponding
  205. Weitek instruction to be executed. (The instructions have been cleverly
  206. assigned to memory locations in such a way that loads to consecutive
  207. coprocessor registers can make use of the 386/486 MOVS string instruction.)
  208. This memory-mapped interface is much faster than the IO-oriented protocol
  209. that is used to couple the CPU to an 80287 or 80387 coprocessor. The Weitek's
  210. memory block can actually be assigned to any logical address using the MMU
  211. (memory management unit) in the 386/486's protected and virtual modes. This
  212. also means that the Weitek Abacus *cannot* be used in the real mode of those
  213. processors, since their physical starting address (0C0000000h) is not within
  214. the 1 MByte address range and the MMU is inoperable in real mode. However,
  215. DOS programs can make use of the Weitek by using a DOS extender or a memory
  216. manager (such as QEMM or EMM386) that runs in protected/virtual mode itself
  217. and can therefore map the Weitek's memory block to any desired location in
  218. the 1 MByte address range.
  219.  
  220. Typically the FS segment register is then set up to point to the Weitek's
  221. memory block. On the 80486, this technique has severe drawbacks, as using the
  222. FS: prefix takes an additional clock cycle, thereby nearly halving the
  223. performance of the 4167. Most DOS-based compilers exhibit this problem, so
  224. the only way around it is to code in assembly language [75]. The Weitek
  225. Abacus 3167 and 4167 are also supported by the UNIX operating system [33].
  226.  
  227.  
  228.  
  229. ==========================================================
  230. Which application programs benefit from a math coprocessor
  231. ==========================================================
  232.  
  233. According to the Intel 387DX User's Guide, there are more than 2100
  234. commercial programs that can make use of a 387-compatible coprocessor. Every
  235. program that uses floating-point arithmetic somewhere and contains the
  236. instructions to support an 80x87 or Weitek chip can gain speed by installing
  237. one. However, the speedup will vary from program to program (and even within
  238. the same program) depending on how computation-intensive the program or
  239. operation within the program is. Typical applications that benefit from the
  240. use of a math coprocessor are:
  241.  
  242.    - CAD programs (AutoCAD, VersaCAD, GenericCAD)
  243.    - Spreadsheet programs (Lotus 1-2-3, Excel, Quattro, Wingz)
  244.    - Business graphics programs (Arts&Letters, Freedom of Press, Freelance)
  245.    - Mathematical analysis and statistical programs (Mathematica, TKSolver,
  246.        SPSS/PC, Statgraphics)
  247.    - Database programs (dBase IV, FoxBase, Paradox, Revelation)
  248.  
  249. Note that for spreadsheets and databases, a coprocessor only helps if some
  250. kind of floating-point computation is performed; this is true more often for
  251. spreadsheets than for databases. Also note that the speed of many programs
  252. depends quite heavily on factors such the speed of the graphics adapter (CAD)
  253. or the disk performance (databases), so the computational performance is only
  254. a (small) part of the total performance of the application. There are some
  255. programs that won't run without a coprocessor, among them AutoCAD (R10 and
  256. later) and Mathematica.
  257.  
  258. Most GUIs (graphical user interfaces) such as Microsoft Windows or the OS/2
  259. Presentation Manager do *not* gain additional speed from using a
  260. *mathematical* coprocessor, since their graphics operations only use integer
  261. arithmetic [71]. They *will* benefit from a graphics board with a graphics
  262. "coprocessor" that speeds up certain common graphics operations such as
  263. BitBlt or line drawing. A few GUIs used on PCs, such as X-Windows, use a
  264. certain amount of floating-point operations for operations such as arc
  265. drawing. However, the use of floating-point operations in X-Windows seems to
  266. have decreased significantly in versions after X11R3, so the overall
  267. performance impact of a coprocessor is small [72]. Applications running under
  268. any GUI may take advantage of a math coprocessor, of course (for example,
  269. Microsoft Excel running under Windows).
  270.  
  271. While support for 80x87 coprocessors is very common in application programs,
  272. the Weitek Abacus coprocessors do not enjoy such widespread support. Due to
  273. their higher price, only a few high-end PCs have been equipped with Weitek
  274. coprocessors. Some machines, such as IBM's PS/2 series, do not even have
  275. sockets to accommodate them. Therefore, most of the programs that support
  276. these coprocessors are also high-end products, like AutoCAD and Versacad-386.
  277.  
  278.  
  279.  
  280. ==============================================
  281. Potential performance gains with a coprocessor
  282. ==============================================
  283.  
  284. The Intel Math Coprocessor Utilities Disk that accompanies the Intel 387DX
  285. coprocessor has a demonstration program that shows the speedup of certain
  286. application programs when run with the Intel coprocessor versus a system with
  287. no coprocessor:
  288.  
  289.          Application       Time w/o 387   Time w/387    Speedup
  290.  
  291.          Art&Letters          87.0 sec      34.8 sec     150%
  292.          Quattro Pro           8.0 sec       4.0 sec     100%
  293.          Wingz                17.9 sec       9.1 sec      97%
  294.          Mathematica         420.2 sec     337.0 sec      25%
  295.  
  296.  
  297.          The following table is an excerpt from [70]:
  298.  
  299.          Application        Time w/o 387   Time w/387  Speedup
  300.  
  301.          Corel Draw          471.0 sec     416.0 sec      13%
  302.          Freedom Of Press    163.0 sec      77.0 sec     112%
  303.          Lotus 1-2-3         257.0 sec      43.0 sec     597%
  304.  
  305.  
  306.          The following table is an excerpt from [25]:
  307.  
  308.          Application        Time w/o 387   Time w/387  Speedup
  309.  
  310.          Design CAD, Test1    98.1 sec      50.0 sec      96%
  311.          Design CAD, Test2    75.3 sec      35.0 sec     115%
  312.          Excel, Test 1         9.2 sec       6.8 sec      35%
  313.          Excel, Test 1        12.6 sec       9.3 sec      35%
  314.  
  315.  
  316. Note that coprocessor performance also depends on the motherboard, or more
  317. specifically, the chipset used on the motherboard. In [34] and [35]
  318. identically configured motherboards using different 386 chipsets were tested.
  319. Among other tests a coprocessor benchmark was run which is based on a fractal
  320. computation and its execution time recorded. The following tables showing
  321. coprocessor performance to vary with the chipset have been copied from these
  322. articles in abridged form:
  323.  
  324.                   Cyrix                                   Cyrix
  325.     chip set      387+                 chip set           83D87
  326.  
  327.     Opti, 40 MHz  24.57 sec   97.0%    PC-Chips, 33 MHz  26.97 sec   93.0%
  328.     Elite,40 MHz  24.46 sec   97.4%    UMC,      33 MHz  27.69 sec   90.5%
  329.     ACT,  40 MHz  23.84 sec  100.0%    Headland, 33 MHz  25.08 sec  100.0%
  330.     Forex,40 MHz  23.84 sec  100.0%    Eteq,     33 MHz  27.38 sec   91.6%
  331.  
  332.  
  333. This shows that performance of the same coprocessor can vary by up to ~10%
  334. depending on the chipset used on your board, at least for 386 motherboards
  335. (similar numbers for 286, 386SX, and 486 are, unfortunately, not available).
  336. The benchmarks for this article were run on a motherboard with the Forex chip
  337. set, one of the fastest 386 chip sets available, and not only with respect to
  338. floating-point performance [35].
  339.  
  340.  
  341.  
  342. ==================================
  343. How various math coprocessors work
  344. ==================================
  345.  
  346. In any 80x86 system with an 80x87 math coprocessor, CPU instructions and
  347. coprocessor instructions are executed concurrently. This means that the CPU
  348. can execute CPU instructions while the coprocessor executes a coprocessor
  349. instruction at the same time. The concurrency is restricted somewhat by the
  350. fact that the CPU has to aid the coprocessor in certain operations. As the
  351. CPU and the coprocessor are fed from the same instruction stream and both
  352. instruction streams may operate on the same data, there has to be a
  353. synchronizing mechanism between the CPU and the coprocessor.
  354.  
  355.  
  356. The 8087
  357. --------
  358. In 8086/8088 systems with 8087 coprocessors, both chips look at every opcode
  359. coming in from the bus. To do this, both chips have the same BIU (bus
  360. interface unit) and the 8086 BIU sends the status signals of its prefetch
  361. queue to the 8087 BIU. This insures that both processors always decode the
  362. same instructions in parallel. Since all coprocessor instruction start with
  363. the bit pattern 11011, it is easy for the 8087 to ignore all other
  364. instructions. Likewise the CPU ignores all coprocessor instructions, unless
  365. they access memory. In this case, the CPU computes the address of the LSB
  366. (least significant byte) of the memory operand and does a dummy read. The
  367. 8087 then takes the data from the data bus. If more than one memory access is
  368. needed to load an memory operand, the 8087 requests the bus from the CPU,
  369. generates the consecutive addresses of the operand's bytes and fetches them
  370. from the data bus. After completing the operation, the 8087 hands bus control
  371. back to the CPU. Since 8087 and CPU are hooked up to the same synchronous
  372. bus, they must run at the same speed. This means that with the 8087, only
  373. synchronous operation of CPU and coprocessor is possible.
  374.  
  375. Another 8087 coprocessor instruction can only be started if the previous one
  376. has been completed in the NEU (numerical execution unit) of the 8087. To
  377. prevent the 8086 from decoding a new coprocessor instruction while the 8087
  378. is still executing the previous coprocessor instruction, a coding mechanism
  379. is employed:  All 8087-capable compilers and assemblers automatically
  380. generate a WAIT instruction before each coprocessor instruction. The WAIT
  381. instruction tests the CPU's /TEST pin and suspends execution until its input
  382. becomes "LOW". In all 8086/8087 systems, the 8086 /TEST pin is connected to
  383. the 8087 BUSY pin. As long as the NEU executes a coprocessor instruction, it
  384. forces its BUSY pin "HIGH"; thus, the WAIT opcode preceding the coprocessor
  385. instruction stops the CPU until any still-executing coprocessor instruction
  386. has finished.
  387.  
  388. The same synchronization is used before the CPU accesses data that was
  389. written by the coprocessor. A WAIT instruction after any coprocessor
  390. instruction that writes to memory causes the CPU to stop until the
  391. coprocessor has completed transfer of the data to memory, after which the CPU
  392. can safely access it.
  393.  
  394.  
  395. The 80287
  396. ---------
  397. The 80287 coprocessor-CPU interface is totally different from the 8087
  398. design. Since the 80286 implements memory protection via an MMU based on
  399. segmentation, it would have been much too expensive to duplicate the whole
  400. memory protection logic on the coprocessor, which an interface solution
  401. similar to the 8087 would have required. Instead, in an 80286/80287 system,
  402. the CPU fetches and stores all opcodes and operands for the coprocessor.
  403. Information is then passed through the CPU ports F8h-FFh. (As these ports are
  404. accessible under program control, care must be taken in user programs not to
  405. accidentally perform write operations to them, as this could corrupt data in
  406. the math coprocessor.)
  407.  
  408. The 8087/8087 combination can be characterized as a cooperation of partners
  409. with equal rights, while the 80286/287 is more a master-slave relationship.
  410. This makes synchronization easier, since the complete instruction and data
  411. flow of the coprocessor goes through the CPU. Before executing most
  412. coprocessor instructions, the 80286 tests its /BUSY pin, which is tied to the
  413. 287 coprocessor and signals if the 80287 is still executing a previous
  414. coprocessor instruction or has encountered an exception. The 80286 then waits
  415. until the /BUSY signal goes to "low" before loading the next coprocessor
  416. instruction into the 80287. Therefore, a WAIT instruction before every
  417. coprocessor instruction is not required. These WAITs are permissible, but not
  418. necessary, in 80287 programs. The second form of WAIT synchronization (after
  419. the coprocessor has written a memory operand) *is* still necessary on 286/287
  420. systems.
  421.  
  422. The execution unit of the 80287 is practically identical to that of the 8087;
  423. that is, nearly all coprocessor instructions execute in the same number of
  424. clock cycles on both coprocessors. However, due to the additional overhead of
  425. the 80287's CPU/coprocessor interface (at least ~40 clock cycles), an 8 MHz
  426. 80286/80287 combination can have lower floating-point performance than an
  427. 8086/8087 system running at the same speed. Additionally, older 286 boards
  428. were often configured to run the coprocessor at only 2/3 the speed of the
  429. CPU, making use of the ability of the 80287 to run asynchronously: The 80287
  430. has a CKM pin that causes the incoming system clock to be divided by three
  431. for the coprocessor if it is tied to ground. The 80286 always divides the
  432. system clock by two internally, hence the final ratio of 2/3. However, when
  433. the CKM (ClocK Mode) pin is tied high on the 80287, it does not divide the
  434. CLK input. This feature has been exploited by the maker of coprocessor speed
  435. sockets. These sockets tie CKM high and supply their own CLK signal with a
  436. built-in oscillator, thereby allowing the 80287 or compatible to run at a
  437. much higher speed than the CPU. With an IIT or Cyrix 287 one can have a 20
  438. MHz coprocessor running with a 8 MHz 80286! Note, however, that the floating-
  439. point performance of such a configuration does not scale linearly with the
  440. coprocessor clock, since all the data has to be passed through the much
  441. slower CPU. If the coprocessor executes mostly simple instructions (such as
  442. addition and multiplication), doubling the coprocessor clock to 20 MHz in a
  443. 10 MHz system does not show any performance increase at all [24].
  444.  
  445. The Intel 80287XL, the Cyrix 82S87, and the IIT 2C87 contain the internals of
  446. a 387 coprocessor, but are pin-compatible to the original 287. These chips
  447. divide the system clock by two internally, as opposed to three in the
  448. original 80287. Since the 80286 also divides the system clock by two, they
  449. usually run synchronously with respect to the CPU, although they can also be
  450. run asynchronously.
  451.  
  452.  
  453. The 80387
  454. ---------
  455. The coprocessor interface in 80386/80387 systems is very similar to the one
  456. found in 286/287 systems. However, to prevent corruption of the coprocessor's
  457. contents by programming errors, the IO ports 800000F8h-800000FFh are used,
  458. which are not accessible to programs. The CPU/coprocessor interface has been
  459. optimized and uses full 32-bit transfers; the interface overhead has been
  460. reduced to about 14-20 clock cycles. For some operations on the 387 'clones'
  461. that take less than about 16 clock cycles to complete, this overhead
  462. effectively limits the execution rate of coprocessor instructions. The only
  463. sensible solution to provide even higher floating-point performance was to
  464. integrate the CPU and coprocessor functionality onto the same chip, which
  465. is exactly what Intel did with the 80486 CPU. The FPU in the 486 also benefits
  466. from the instruction pipelining and from the on-chip cache.
  467.  
  468.  
  469.  
  470. =====================
  471. Coprocessor emulators
  472. =====================
  473.  
  474. In the absence of a coprocessor, floating-point calculations are often
  475. performed by a software package that simulates its operations. Such a program
  476. is called a coprocessor emulator. Simulating the coprocessor has the
  477. advantage for application programs that identical code can be generated for
  478. use with either the coprocessor and the emulator, so that it's possible to
  479. write programs that run on any system without regard to whether a coprocessor
  480. is present or not. Whether the program will use an actual coprocessor or
  481. software emulating it can easily be determined at run-time by detecting the
  482. presence or absence of the coprocessor chip.
  483.  
  484. Two approaches to interface an 80x87 emulator to programs are common. The
  485. first method makes use of the fact that all coprocessor instruction start
  486. with the same five bit pattern 11011. Thus the first byte of a coprocessor
  487. instruction will be in the range D8-DF hexadecimal. In addition, coprocessor
  488. instructions usually are preceded by a WAIT instruction (opcode 9Bh) which is
  489. one byte long (the reason for doing this has been described in the previous
  490. chapter dealing with the operating details of the 80x87). One common approach
  491. is to replace the WAIT instruction and the first byte of the coprocessor
  492. instruction with one out of eight interrupt instructions; the remaining bytes
  493. of the coprocessor instruction are left unchanged. Interrupts 34 to 3B
  494. hexadecimal are used for this emulation technique. (Note that the sequences
  495. 9B D8 ... 9B DF can be easily converted to the interrupt instructions CD 34
  496. ... CD 3B by simple addition and subtraction of constants.) The compiler or
  497. assembler initially produces code that contains these appropriate interrupt
  498. calls instead of the coprocessor instructions. If a hardware coprocessor is
  499. detected at run-time, the emulator interrupts point to a short routine that
  500. converts the interrupts calls back to coprocessor instructions (yes, this
  501. is known as "self-modifying code"). If no coprocessor is found the interrupts
  502. point to the emulation package, which examines the byte(s) following the
  503. interrupt instruction to determine which floating-point operation to perform.
  504. This method is used by many compilers, including those from Microsoft and
  505. Borland. It works with every 80x86 CPU from the 8086/8088 on.
  506.  
  507. The second method to interface an emulator is only available on 286/386/486
  508. machines. If the emulation bit in the machine status word of these processors
  509. is set, the processors will generate an interrupt 7 whenever a coprocessor
  510. instruction is encountered. The vector for this interrupt will have been set
  511. up to point at an emulation package that decodes the instruction and performs
  512. the desired operation. This approach has the advantage that the emulator
  513. doesn't have to be included in the program code, but can be loaded once (as a
  514. TSR or device driver) and then used by every program that requires a
  515. coprocessor. Emulation via interrupt 7 is transparent, which means that
  516. programs containing coprocessor instructions execute just like a coprocessor
  517. was present, only slower. This approach is taken by the public domain EM87
  518. emulator, the shareware program Q387, and the commercial Franke387 emulator,
  519. for example. Even programs that require a coprocessor to run like AutoCAD
  520. are 'fooled' to believe that a coprocessor is present with emulators using
  521. INT 7.
  522.  
  523. Operating systems such as OS/2 2.0 and Windows 3.1 provide coprocessor
  524. emulations using INT 7 automatically if they do not find a coprocessor to be
  525. installed. The emulator in Windows doesn't seem to be very fast, as people
  526. who have ported their Turbo Pascal programs from the TP 6.0 DOS compiler
  527. (using the emulation built into the TP 6.0 run-time library) to the TPW 1.5
  528. Windows compiler (using MS Windows' emulator) have noticed. Slowdowns of as
  529. much as a factor of five have been reported [79].
  530.  
  531. The size of the emulator used by TP 6.0 is about 9.5 KB, while EM87 occupies
  532. about 15.8 KB as a TSR, and Franke387 uses about 13.4 KB as a device driver.
  533. Note that Franke387 and especially EM87 model a real coprocessor much more
  534. closely than Turbo Pascal's emulator does. In particular, EM87 supports
  535. denormal numbers, precision control, and rounding control. The emulator in TP
  536. 6.0 does not implement these features. The version of Franke387 tested (V2.4)
  537. supports denormals in single and double-precision, but not double extended
  538. precision, and it supports precision control, but not rounding control.
  539. The recently introduced shareware program Q387 only runs on 386, 386SX, 486SX
  540. and compatible processors. The program loads completely into extended memory
  541. and uses about 330 KB. To enable INT 7 trapping to a service routine in
  542. extended memory it needs to run with a memory manager (e.g. EMM386, QEMM,
  543. or 386MAX). The huge size of the program stems from the fact that it was
  544. solely optimized for speed, assuming that extended memory is a cheap resource.
  545. Presumably it uses large tables to speed computations. Intel's E80287 program
  546. is supposed to be an 100% exact emulation of the 80287 coprocessor [44]. Note
  547. that the more closely a real coprocessor is modelled by the emulator, the
  548. slower the emulator runs and the larger the code for the emulator gets.
  549.  
  550.  
  551.          Relative execution times of coprocessor vs. software emulators
  552.          for selected coprocessor instructions
  553.  
  554.                         Intel 387DX    TP 6.0 Emulator   EM87 Emulator
  555.  
  556.          FADD ST, ST(0)       1              26                104
  557.          FDIV [DWord]         1              22                136
  558.          FXAM                 1              10                 73
  559.          FYL2X                1              33                102
  560.          FPATAN               1              36                110
  561.          F2XM1                1              38                110
  562.  
  563.  
  564.  
  565.          The following table is an excerpt from [44]:
  566.  
  567.                         Intel 80287  Intel E80287 Emulator
  568.  
  569.          FADD ST, ST(0)       1              42
  570.          FDIV [DWord]         1             266
  571.          FXAM                 1             139
  572.          FYL2X                1              99
  573.          FPATAN               1             153
  574.          F2XM1                1              41
  575.  
  576.  
  577.  
  578.          The following has been adapted from [43] and merged with my own
  579.          data:
  580.  
  581.                         Intel 8087  TP 6.0 Emul. (8086)  Intel Emul. (8086)
  582.  
  583.          FADD ST, ST(0)       1              20                 94
  584.          FDIV [DWord]         1              22                 82
  585.          FPTAN                1              18                144
  586.          F2XM1                1               6                171
  587.          FSQRT                1              44                544
  588.  
  589.  
  590.  
  591. One of the reasons emulators are so slow is that they are often designed to
  592. run with every CPU from the 8086/8088 on upwards. This is the case with the
  593. emulators built into the compiler libraries of the Turbo Pascal 6.0 (also
  594. used by Turbo C/C++) and Microsoft C 6.0 compiler (probably also used in
  595. other Microsoft products) and is also true for the EM87 emulator in the
  596. public domain. By using code that can run on a 8086/8088, these emulators
  597. forego the speed advantage offered by the additional instructions and
  598. architectural enhancements (such as 32-bit registers) of the more advanced
  599. Intel 80x86 processors. A notable exception to this is the Franke387
  600. emulator, a commercial emulator that is also sold as shareware. It uses 386-
  601. specific 32-bit code and only runs on 386/386SX/486SX computers.
  602.  
  603. Besides being slow, coprocessor emulators have other drawbacks when compared
  604. with real coprocessors. Most of the emulators do not support the additional
  605. instructions that the 387-compatible coprocessors offer over the 80287.
  606. Often, some of the low-level stack-manipulating instructions like FDECSTP are
  607. not emulated. For example, [76] lists the coprocessor instructions not
  608. emulated by Microsoft's emulator (included in the MS-C and MS-FORTRAN
  609. libraries) as follows:
  610.  
  611.          FCOS         FRSTOR      FSINCOS      FXTRACT
  612.          FDECSTP      FSAVE       FUCOM
  613.          FINCSTP      FSETPM      FUCOMP
  614.          FPREM1       FSIN        FUCOMPP
  615.  
  616. Additionally, some parts of the coprocessor architecture, like the status
  617. register, are often not or only partially emulated. Some emulators do not
  618. conform to the IEEE-754 standard in their implementation of the basic
  619. arithmetic functions, while the hardware coprocessors do. Also, they
  620. sometimes lack the support for denormals (a special class of floating-point
  621. numbers) although it is required by the standard. Not all the 80x87 emulators
  622. support rounding control and precision control, also features required by
  623. IEEE-754. Most of these omissions are aimed at making the emulator faster and
  624. smaller. Because of the performance gap and these other shortcomings of
  625. coprocessor emulators, a real coprocessor is a must for anybody planning to
  626. do some serious computations. (At today's prices, this shouldn't pose much of
  627. a problem to anybody!)
  628.  
  629. Nhuan Doduc (ndoduc@framentec.fr) has tested a number of standalone
  630. coprocessor emulators for PCs, among them the two emulators, EM87 and
  631. Franke387 V2.4, already mentioned. He found Franke387 to be the best in terms
  632. of reliability, speed, and accuracy.
  633.  
  634.  
  635.  
  636. =============================
  637. Installing a math coprocessor
  638. =============================
  639.  
  640. Usually, installing a coprocessor doesn't pose much of a problem, as every
  641. coprocessor comes with installation instructions and a diagnostic disk that
  642. lets you check its correct operation after installation. In addition, the
  643. user manuals of most computers have a section on coprocessor installation.
  644.  
  645. 1)   Make sure to buy the right coprocessor for your system. An 8087 works
  646.      together with 8086, 8088, V20, and V30 CPUs. An 80287, 287XL or
  647.      compatible works with a 80286 CPU. (There are also some old 386
  648.      motherboards that accept a 80287 coprocessor, but they usually also
  649.      provide a socket for the 387; given today's pricing, it makes no sense
  650.      not to get a 387 for these systems.) A 80387, 387DX or compatible
  651.      coprocessor is for 386-based systems, as is the Intel RapidCAD. 387
  652.      coprocessors also work with the Cyrix 486DLC CPU (which, despite its
  653.      name, does not include an FPU). Similarly, the 387SX or compatible
  654.      coprocessor go into systems whose CPU is a 386SX or Cyrix 486SLC.
  655.  
  656.      The Weitek Abacus 3167 works with a 386 CPU but requires a 121-pin EMC
  657.      socket in the system; this is *not* the same socket used by a 80387 or
  658.      compatible chip, and some computers, such as IBM's PS/2s, don't have
  659.      this socket. The Weitek Abacus 4167 works together with the 486 and
  660.      requires a special 142-pin socket to be present.
  661.  
  662. 2)   Always install a coprocessor that's rated at the same clock speed as the
  663.      CPU. For example, in a 40 MHz 386 system using an AMD Am386-40, install
  664.      a coprocessor rated for 40 MHz such as a Cyrix 83D87-40, C&T 38700DX-40,
  665.      IIT 3C87-40, or ULSI 83C87-40. Running a coprocessor above its specified
  666.      frequency rating may cause it to produce false results, which you might
  667.      fail to recognize as such. (I have personally experienced this problem
  668.      with a Cyrix 83D87-33 that I tried to push to 40 MHz. It passed all the
  669.      diagnostic benchmarks on the Cyrix diagnostic disk and the tests of some
  670.      commercial system test programs. However, I found it to fail the
  671.      Whetstone and Linpack benchmarks, which include accuracy checks.)
  672.      Although there is usually no problem with overheating when pushing a
  673.      coprocessor over the specified maximum frequency rating, be warned that
  674.      operation of a coprocessor above the maximum ratings stated by the
  675.      manufacturer may make its operation unreliable.
  676.  
  677.      Some 386 boards allow the coprocessor to be clocked differently than the
  678.      CPU. This is called "asynchronous operation" and allows you, for
  679.      example, to run the coprocessor at 33 MHz while the CPU runs at 40 MHz.
  680.      Of the currently available math coprocessors, only the Intel 80387 and
  681.      387DX support asynchronous operation. The 387-compatible "clones" from
  682.      Cyrix, C&T, IIT and ULSI always run at the full speed of the CPU, even
  683.      if you have set up your motherboard for asynchronous operation.
  684.  
  685. 3)   Once you've got the correct coprocessor for your system you can start
  686.      the actual installation process. Turn off the computer's power switch
  687.      and unplug the power cord from the wall outlet, remove the case, and
  688.      locate the math coprocessor socket. This socket is always located right
  689.      next to the main CPU, which can be identified by the printing on top of
  690.      the chip. (It's also usually one of the biggest chips on the board). The
  691.      8078 and 80287 DIL sockets are rectangular sockets with 20 pin holes on
  692.      each of the longer sides. The 387SX PLCC socket is a square socket that
  693.      has 17 vertical connector strips on the 'wall' of each side. The 387 PGA
  694.      socket is square and has two rows of pin holes on each side. The EMC
  695.      socket for the Weitek 3167 is similar but has three rows of holes on
  696.      each side. The PGA socket for the Weitek 4167 is also square with three
  697.      rows of holes on each side. If you can't find the math coprocessor
  698.      socket, consult your owner's manual, your computer dealer, or a
  699.      knowledgeable friend.
  700.  
  701.      If you are installing the Intel RapidCAD chipset in a 386 system, you
  702.      will have to remove the 386 CPU first. Intel provides an easy-to-use
  703.      chip extractor and a storage box for the 386 chip for this purpose. Just
  704.      follow the instructions in the RapidCAD installation manual.
  705.  
  706.      On many systems, the motherboard is supported only at a small number of
  707.      points. Since considerable force is required to insert a pin grid chip
  708.      like the 80387, RapidCAD, or Weitek Abacus 3167 into its socket, the
  709.      board may bend quite a lot due to the insertion pressure. This could
  710.      cause cracks in the board's conductive traces that may render it
  711.      intermittently or completely inoperable. Damage done to the board in
  712.      this way is usually not covered by the computer's warranty! Therefore,
  713.      it may be a good idea to first check how much the board bends by
  714.      pressing on the math coprocessor socket with your finger. If you find it
  715.      to bend easily, try to put something under the board directly beneath
  716.      the coprocessor socket. If this is impossible, as it is in many desktop
  717.      cases, consider removing the whole mother board from the case, and
  718.      placing it on a hard, flat surface free of static electricity. (You will
  719.      also have to do this if your system's CPU and coprocessor socket are on
  720.      a separate card rather than on the motherboard, as is typical in many
  721.      modular systems.)
  722.  
  723.      Be sure you are properly grounded before you remove the coprocessor from
  724.      its antistatic box, as even a tiny jolt of static electricity can ruin
  725.      the coprocessor. Make sure you do not touch the pins on the bottom of
  726.      the chip.
  727.  
  728.      Check the pins and make sure none are bent; if some are, you can
  729.      *carefully* straighten them with needle-nose pliers or tweezers.
  730.  
  731. 4)   Match the coprocessor's orientation with the orientation of the socket.
  732.      Correct orientation of the coprocessor is absolutely essential, because
  733.      if you insert it the wrong way it may be damaged.
  734.  
  735.      8087 and 287 coprocessors have a notch on one the shorter sides of their
  736.      rectangular DIL package that should be matched with the notch of the
  737.      coprocessor socket. Usually the 286 CPU and the 287 coprocessor are
  738.      placed alongside each other and both have the same orientation, (that
  739.      is, their respective notches point in the same direction). 387SX
  740.      coprocessors feature a white dot or similar mark that matches with some
  741.      sort of marking on the socket. 387 coprocessors have a bevelled corner
  742.      that is also marked with a white dot or similar marking. This should be
  743.      matched with the bevelled or otherwise marked corner of the socket. If
  744.      your system has only a large EMC socket and you are installing a 387 in
  745.      it, you will leave one row of pin holes free on each side of the chip.
  746.  
  747.      Once you have found the correct orientation, place the chip over the
  748.      socket and make sure all pins are correctly aligned with their
  749.      respective holes. Press firmly and evenly on the chip -- you may have to
  750.      press hard to seat the coprocessor all the way. Again, make sure your
  751.      motherboard does not bend more than slightly under the insertion
  752.      pressure. For 8087, 287, and 387 coprocessors it is normal that the
  753.      coprocessor does not go all the way in; about one millimeter (1/25 inch)
  754.      of space is usually left between the socket and the bottom of the
  755.      coprocessor chip. (This allows the insertion of a extraction device
  756.      should it become necessary to remove the chip. Note that the
  757.      construction of the 387SX's PLCC socket makes it next-to-impossible to
  758.      remove the coprocessor once fully inserted, as the top of the chip is
  759.      level with the socket's 'walls'.)
  760.  
  761. 5)   Check your computer's manual for the proper position of any jumpers or
  762.      switches that need to be set to tell the system it now has a coprocessor
  763.      (and possibly, which kind it has). Put the cover back on the system
  764.      unit, reconnect the power, and turn on your computer. Depending on your
  765.      system's BIOS, you may now have to run a setup or configuration program
  766.      to enable the coprocessor. Finally, run the programs supplied on the
  767.      diagnostic disk (included with your coprocessor) to check for its
  768.      correct operation.
  769.  
  770.  
  771.  
  772. =================================================================
  773. Descriptions of available coprocessors, CPU+FPU (as of 01-11-93):
  774. =================================================================
  775.  
  776. Intel 8087
  777.  
  778.      [43] This was the first coprocessor that Intel made available for the
  779.      80x86 family. It was introduced in 1980 and therefore does not have full
  780.      compatibility with the IEEE-754 standard for floating-point arithmetic,
  781.      (which was finally released in 1985). It complements the 8088 and 8086
  782.      CPUs and can also be interfaced to the 80188 and 80186 processors.
  783.  
  784.      The 8087 is implemented using NMOS. It comes in a 40-pin CERDIP (ceramic
  785.      dual inline package). It is available in 5 MHz, 8 MHz (8087-2), and 10
  786.      MHz (8087-1) versions. Power consumption is rated at max. 2400 mW [42].
  787.  
  788.      A neat trick to enhance the processing power of the 8087 for
  789.      computations that use only the basic arithmetic operations (+,-,*,/) and
  790.      do not require high precision is to set the precision control to single-
  791.      precision. This gives one a performance increase of up to 20%. For
  792.      details about programming the precision control, see program PCtrl in
  793.      appendix A.
  794.  
  795.      With the help of an additional chip, the 8087 can in theory be
  796.      interfaced to an 80186 CPU [36]. The 80186 was used in some PCs (e.g.
  797.      from Philips, Siemens) in the 1982/1983 time frame, but with IBM's
  798.      introduction of the 80286-based AT in 1984, it soon lost all
  799.      significance for the PC market.
  800.  
  801.  
  802. Intel 80187
  803.  
  804.      The 80187 is a rather new coprocessor designed to support the 80C186
  805.      embedded controller (a CMOS version of the 80186 CPU; see above). It was
  806.      introduced in 1989 and implements the complete 80387 instruction set. It
  807.      is available in a 40 pin CERDIP (ceramic dual inline package) and a 44
  808.      pin PLCC (plastic leaded chip carrier) for 12.5 and 16 MHz operation.
  809.      Power consumption is rated at max. 675 mW for the 12.5 MHz version and
  810.      max. 780 mW for the 16 MHz version [37].
  811.  
  812.  
  813. Intel 80287
  814.  
  815.      [44] This is the original Intel coprocessor for the 80286, introduced in
  816.      1983. It uses the same internal execution unit as the 8087 and therefore
  817.      has the same speed (actually, it is sometimes slower due to additional
  818.      overhead in CPU-coprocessor communication). As with the 8087, it does
  819.      not provide full compatibility with the IEEE-754 floating point standard
  820.      released in 1985.
  821.  
  822.      The 80287 was manufactured in NMOS technology, and is packaged in a 40-
  823.      pin CERDIP (ceramic dual inline package). There are 6 MHz, 8 MHz, and 10
  824.      MHz versions. Power consumption can be estimated to be the same as that
  825.      for the 8087, which is 2400 mW max.
  826.  
  827.      The 80287 has been replaced in the Intel 80x87 family with its faster
  828.      successor, the CMOS-based Intel 287XL, which was introduced in 1990 (see
  829.      below). There may still be a few of the old 80287 chips on the market,
  830.      however.
  831.  
  832.  
  833. Intel 80287XL
  834.  
  835.      This chip is Intel's second-generation 287, first introduced in 1990.
  836.      Since it is based on the 80387 coprocessor core, it features full IEEE
  837.      754 compatibility and faster instruction execution. Intel claims about
  838.      50% faster operation than the 80287 for typical benchmark tests such as
  839.      Whetstone [45]. Comparison with benchmark results for the AMD 80C287,
  840.      which is identical to the Intel 80287, support this claim [1]: The Intel
  841.      287XL performed 66% faster than the AMD 80C287 on a fractal benchmark
  842.      and 66% faster on the Whetstone benchmark in these tests. Whetstone
  843.      results from [46] show the Intel 287XL at 12.5 MHz to perform 552
  844.      kWhets/sec as opposed to the AMD's 80C287 289 kWhets/sec, a 91%
  845.      performance increase. A benchmark using the MathPak program showed the
  846.      Intel 287XL to be 59% faster than the Intel 80287 (6.9 sec. vs. 11.0
  847.      sec.) [26]. Since the 287XL has all the additional instructions and
  848.      enhancements of a 387, most software automatically identifies it as an
  849.      80387-compatible coprocessor and therefore can make use of extra 387-
  850.      only features, such as the FSIN and FCOS instructions.
  851.  
  852.      The 287XL is manufactured in CMOS and therefore uses much less power
  853.      than the older NMOS-based 80287. At 12.5 MHz, the power consumption is
  854.      rated at max. 675 mW, about 1/4 of the 80287 power consumption. The
  855.      287XL is available in either a 40-pin CERDIP (ceramic dual inline
  856.      package) or a 44 pin PLCC (plastic leaded chip carrier). (This latter
  857.      version is called the 287XLT and intended mainly for laptop use.) The
  858.      287XL is rated for speeds of up to 12.5 MHz.
  859.  
  860.  
  861. AMD 80C287
  862.  
  863.      This chip, manufactured by Advanced Micro Devices (AMD), is an exact
  864.      clone of the old Intel 80287, and was first brought to market by AMD in
  865.      1989. It contains the original microcode of the 80287 and is therefore
  866.      100% compatible with it. However, as the name indicates, the 80C287 is
  867.      manufactured in CMOS and therefore uses less power than an equivalent
  868.      Intel 80287. At 12.5 MHz, its power consumption is rated at max. 625 mW
  869.      or slightly less than that of the Intel 80287XL [27]. There is also
  870.      another version called AMD 80EC287 that uses an 'intelligent' power save
  871.      feature to reduce the power consumption below 80C287 levels. Tests at
  872.      10.7 MHz show typical power consumption for the 80EC287 to be at 30 mW,
  873.      compared to 150 mW for the AMD 80C287, 300 mW for the Intel 287XL and
  874.      1500 mW for the Intel 80287 [57]. The 80EC287 is therefore ideally
  875.      suited for low power laptop systems.
  876.  
  877.      The AMD 80C287 is available in speeds of 10, 12, and 16 MHz. (I have
  878.      only seen it being offered in 10 MHz and 12 MHz versions, however.) At
  879.      about US$ 50, it is currently the cheapest coprocessor available. Note
  880.      that it provides less performance than the newer Intel 287XL (see
  881.      above). The AMD 80C287 is available in 40 pin ceramic and plastic DIPs
  882.      (dual inline package) and as 44 pin PLCC (plastic leaded chip carrier).
  883.  
  884.      Due to recent legal battles with Intel over the right to use the 287
  885.      microcode, which AMD lost, AMD may have to discontinue this product
  886.      (disclaimer: I am not a legal expert).
  887.  
  888.  
  889. Cyrix 82S87
  890.  
  891.      This 80287-compatible chip was developed from the Cyrix 83D87, (Cyrix's
  892.      80387 'clone') and has been available since 1991. It complies completely
  893.      with the IEEE-754 standard for floating-point arithmetic and features
  894.      nearly total compatibility with Intel's coprocessors, including
  895.      implementation of the full Intel 80387 instruction set. It implements
  896.      the transcendental functions with the same degree of accuracy and the
  897.      superior speed of the Cyrix 83D87. This makes the Cyrix 82S87 the
  898.      fastest [1] and most accurate 287 compatible coprocessor available.
  899.      Documentation by Cyrix [46] rates the 82S87 at 730 kWhets/sec for a 12.5
  900.      MHz system, while the Intel 287XL performs only 552 kWhets/sec. 82S87
  901.      chips manufactured after 1991 use the internals of the Cyrix 387+, which
  902.      succeeds the original 83D87 [73].
  903.  
  904.      The 82S87 is a fully static CMOS design with very low power requirements
  905.      that can run at speeds of 6 to 20 MHz. Cyrix documentation shows the
  906.      82S87 to consume about the same amount of power as the AMD 80C287 (see
  907.      above). The 82S87 comes in a 40 pin DIP or a 44 pin PLCC (plastic leaded
  908.      chip carrier) compatible with the pinout of the Intel 287XLT and
  909.      ideally suited for laptop use.
  910.  
  911.  
  912. IIT 2C87
  913.  
  914.      This chip was the first 80287 clone available, introduced to the market
  915.      in 1989. It has about the same speed as the Intel 287XL [1]. The 2C87
  916.      implements the full 80387 instruction set [38]. Tests I ran on the 3C87
  917.      seem to indicate that it is not fully compatible with the IEEE-754
  918.      standard for floating-point arithmetic (see below for details), so it
  919.      can be assumed that the 2C87 also fails these test (as it presumably
  920.      uses the same core as the 3C87).
  921.  
  922.      The IIT 2C87 provides extra functions not available on any other 287
  923.      chip [38]. It has 24 user-accessible floating-point registers organized
  924.      into three register banks. Additional instructions (FSBP0, FSBP1, FSBP2)
  925.      allow switching from one bank to another. (Transfers between registers
  926.      in different banks are not supported, however, so this feature by itself
  927.      is of limited usefulness. Also, there seems to be only one status
  928.      register (containing the stack top pointer), so it has to be manually
  929.      loaded and stored when switching between banks with a different number
  930.      of registers in use [40]). The register bank's main purpose is to aid
  931.      the fourth additional instruction the 2C87 has (F4X4), which does a full
  932.      multiply of a 4x4 matrix by a 4x1 vector, an operation common in 3D-
  933.      graphics applications [39]. The built-in matrix multiply speeds this
  934.      operation up by a factor of 6 to 8 when compared to a programmed
  935.      solution according to the manufacturer [38]. Tests show the speed-up to
  936.      be indeed in this range [40]. For the 3C87, I measured the execution
  937.      time of F4X4 to be about 280 clock cycles; the execution time on the
  938.      2C87 should be somewhat larger - I estimate it to be around 310 clock
  939.      cycles due to the higher CPU-NDP communication overhead in instruction
  940.      execution in 286/287 systems (~45-50 clock cycles) compared with 386/387
  941.      systems (~16-20 clock cycles). As desirable as the F4X4 instruction may
  942.      seem, however, there are very few applications that make use of it when
  943.      an IIT coprocessor is detected at run time (among them Schroff
  944.      Development's Silver Screen and Evolution Computing's Fast-CAD 3-D
  945.      [25]).
  946.  
  947.      The 2C87 is available for speeds of up to 20 MHz. It is implemented in
  948.      an advanced CMOS process and has therefore a low power consumption of
  949.      typically about 500 mW [38].
  950.  
  951.  
  952. Intel 80387
  953.  
  954.      This chip was the first generation of coprocessors designed specifically
  955.      for the Intel 80386 CPU. It was introduced in 1986, about one year after
  956.      the 80386 was brought to market. Early 386 system were therefore
  957.      equipped with both a 80287 and a 80387 socket. The 80386 does work with
  958.      an 80287, but the numerical performance is hardly adequate for such a
  959.      system.
  960.  
  961.      The 80387 has itself since been superseded by the Intel 387DX introduced
  962.      by a quiet change in 1989 (see below). You might find it when acquiring
  963.      an older 386 machine, though. The old 80387 is about 20% slower than the
  964.      newer 387DX.
  965.  
  966.      The 80387 is packaged in a 68-pin ceramic PGA, and was manufactured
  967.      using Intel's older 1.5 micron CHMOS III technology, giving it moderate
  968.      power requirements. Power consumption at 16 MHz is max. 1250 mW (750 mW
  969.      typical), at 20 MHz max. 1550 mW (950 mW typical), and at 25 MHz max.
  970.      1950 mW (1250 mW typical) [60].
  971.  
  972.  
  973. Intel 387DX
  974.  
  975.      The 387DX is the second-generation Intel 387; it was quietly introduced
  976.      to replace the original 80387 in 1989. This version is done in a more
  977.      advanced CMOS process which enables the coprocessor to run at a maximum
  978.      frequency of 33 MHz (the 80387 was limited to a maximum frequency of 25
  979.      MHz). The 387DX is also about 20% faster than the 80387 on the average
  980.      for the same clock frequency. For a 386/387 system operating at 29 MHz
  981.      the Whetstone benchmark (compiled with the highly optimizing Metaware
  982.      High-C V1.6) runs at 2377 kWhetstones/sec for the 80387 and at 2693
  983.      kWhetstones/sec for the 387DX, a 13% increase. In a fractal calculation
  984.      programmed in assembly language, the 387DX performance was 28% higher
  985.      than the performance of the 80387. The transcendental functions have
  986.      also sped up from the 80387 to the 387DX. In the Savage benchmark
  987.      (again, compiled with Metaware High-C V1.6 and running on a 29 MHz
  988.      system), the 80387 evaluated 77600 function calls/second, while the
  989.      387DX evaluated 97800 function calls/second, a 26% increase [7]. Some
  990.      instructions have been sped up a lot more than the average 20%. For
  991.      example, the performance of the FBSTP instruction has increased by a
  992.      factor of 3.64.
  993.  
  994.      The Intel 387DX (and its predecessor 80387) are the only 387
  995.      coprocessors that support asynchronous operation of CPU and coprocessor.
  996.      The 387 consists of a bus interface unit and a numerical execution unit.
  997.      The bus interface unit always runs at the speed of the CPU clock
  998.      (CPUCLK2). If the CKM (ClocK Mode) pin of the 387 is strapped to Vcc,
  999.      the numerical execution unit runs at the same speed as the bus interface
  1000.      unit. If CKM is tied to ground, the numerical execution unit runs at the
  1001.      speed provided by the NUMCLK2 input. The ratio of NUMCLK2 (coprocessor
  1002.      clock) to CPUCLK2 (CPU clock) must lie within the range 10:16 to 14:10.
  1003.      For example, for a 20 MHz 386, the Intel 387DX could be clocked from
  1004.      12.5 MHz to 28 MHz via the NUMCLK2 input. (On the Cyrix 83D87, Cyrix
  1005.      387+, ULSI 83C87, and the IIT 387, the CKM pin is not connected. These
  1006.      coprocessors are therefore not capable of asynchronous operation and
  1007.      always run at the speed of the CPU.)
  1008.  
  1009.      The Intel 387DX is manufactured using Intel's advanced low power CHMOS
  1010.      IV technology. Power consumption at 20 MHz is max. 900 mW (525 mW
  1011.      typical), at 25 MHz max. 1050 mW (625 mW typical), and at 33 MHz max.
  1012.      1250 mW (750 mW typical) [59].
  1013.  
  1014.  
  1015. Intel 387SX
  1016.  
  1017.      This is the coprocessor paired with the Intel 386SX CPU. The 386SX is an
  1018.      Intel 80386 with a 16-bit, rather than 32-bit, data path. This reduces
  1019.      (somewhat) the costs to build a 386SX system as compared to a full 32-
  1020.      bit design required by a 386DX. (The 386SX's main *marketing* purpose
  1021.      was to replace the 80286 CPU, which was being sold more cheaply by other
  1022.      manufacturers [such as AMD], and which Intel subsequently stopped
  1023.      producing.) Due to the 16-bit data path, the 386SX is slower than the
  1024.      386DX and offers about the same speed as an 80286 at the same clock
  1025.      frequency for 16-bit applications. But as the 386SX is a complete 80386
  1026.      internally, it offers also the possibility to run 32-bit applications
  1027.      and supports the virtual 8086 mode (used for example by Windows' 386
  1028.      enhanced mode).
  1029.  
  1030.      The 387SX has all the features of the Intel 80387, including the ability
  1031.      of asynchronous operation of CPU and coprocessor (see Intel 387DX
  1032.      information, above). Due to the 16 bit data path between the CPU and the
  1033.      coprocessor, the 387SX is a bit slower than a 80387 operating at the
  1034.      same frequency. In addition, the 387SX is based on the core of the
  1035.      original 80387, which executes instructions slower than the second
  1036.      generation 387DX.
  1037.  
  1038.      The 387SX comes in a 68-pin PLCC (plastic leaded chip carrier) package
  1039.      and is available in 16 MHz and 20 MHz versions. (Coprocessors for faster
  1040.      386SX systems based on the Am386SX CPU are available from IIT, Cyrix,
  1041.      and ULSI.) Power consumption for the 387SX at 16 MHz is max. 1250 mW
  1042.      (740 mW typical); for the 20 MHz version it is max. 1500 mW (1000 mW
  1043.      typical) [62].
  1044.  
  1045.  
  1046. Intel 387SL
  1047.  
  1048.      This coprocessor is designed for use in systems that contain an Intel
  1049.      386SL as the CPU. The 386SL is directly derived from the 386SX. It is a
  1050.      static CHMOS IV design with very low power requirements that is intended
  1051.      to be used in notebook and laptop computers. It features an integrated
  1052.      cache controller, a programmable memory controller, and hardware support
  1053.      for expanded memory according to the LIM EMS 4.0 standard. The 387SL,
  1054.      introduced in early 1992, has been designed to accompany the 386SL in
  1055.      machines with low power consumption and substitute the 387SX for this
  1056.      purpose. It features advanced power saving mechanisms. It is based on
  1057.      the 387DX core, rather than on the older and slower 80387 core (which is
  1058.      used by the 387SX).
  1059.  
  1060.  
  1061. IIT 3C87
  1062.  
  1063.      This IIT chip was introduced in 1989, about the same time as the Cyrix
  1064.      83D87. Both coprocessors are faster than Intel's 387DX coprocessor. The
  1065.      IIT 3C87 also provides extra functions not available on any other 387
  1066.      chip [38]. It has 24 user-accessible floating-point registers organized
  1067.      into three register banks. Three additional instructions (FSBP0, FSBP1,
  1068.      FSBP2) allow switching from one bank to another. (Transfers between
  1069.      registers in different banks are not supported, however, so this feature
  1070.      by itself is of limited usefulness. Also, there seems to be only one
  1071.      status register [containing the stack top pointer], so it has to be
  1072.      manually loaded and stored when switching between banks with a different
  1073.      number of registers in use [40]). The register bank's main purpose is to
  1074.      aid the fourth additional instruction the 3C87 has (F4X4), which does a
  1075.      full multiply of a 4x4 matrix by a 4x1 vector, an operation common in
  1076.      3D-graphics applications [39]. The built-in matrix multiply speeds this
  1077.      operation up by a factor of 6 to 8 when compared to a programmed
  1078.      solution according to the manufacturer [38]. Tests show the speed-up to
  1079.      be indeed in this range [40]. I measured the F4X4 to execute in about
  1080.      280 clock cycles, during which time it executes 16 multiplications and
  1081.      12 additions. The built-in matrix multiply speeds up the matrix-by-
  1082.      vector multiply by a factor of 3 compared with a programmed solution
  1083.      according to IIT [39]. The results for my own TRNSFORM benchmark support
  1084.      this claim (see results below), showing a performance increase by a
  1085.      factor of about 2.5. This makes matrix multiplies on the IIT 3C87 nearly
  1086.      as fast as on an Intel 486 at the same clock frequency. As desirable as
  1087.      the F4X4 instruction may seem, however, there are very few applications
  1088.      that make use of it when an IIT coprocessor is detected at run time
  1089.      (among them Schroff Development's Silver Screen and Evolution
  1090.      Computing's Fast-CAD 3-D [25]).
  1091.  
  1092.      These IIT-specific instructions also work correctly when using a Chips &
  1093.      Technologies 38600DX or a Cyrix 486DLC CPU, which are both marketed as
  1094.      faster replacements for the Intel 386DX CPU.
  1095.  
  1096.      Tests I ran with the IEEETEST program show that the 3C87 is not fully
  1097.      compatible with the IEEE-754 standard for floating-point arithmetic,
  1098.      although the manufacturer claims otherwise. It is indeed possible that
  1099.      the reported errors are due to personal interpretations of the standard
  1100.      by the program's author that have been incorporated into IEEETEST and
  1101.      that the standard also supports the different interpretation chosen by
  1102.      IIT. On the other hand, the IEEE test vectors incorporated into IEEETEST
  1103.      have become somewhat of an industry standard [66] and Intel's 387, 486,
  1104.      and RapidCAD chips pass the test without a single failure, so the fact
  1105.      that the IIT 3C87 fails some of the tests indicates that it is not fully
  1106.      compatible with the Intel 387 coprocessor. My tests also show that the
  1107.      IIT 3C87 does not support denormals for the double extended format. It
  1108.      is not entirely clear whether the IEEE standard mandates support for
  1109.      extended precision denormals, as the IEEE-754 document explicitly only
  1110.      mentions single and double-precision denormals. Missing support for
  1111.      denormals is not a critical issue for most applications, but there are
  1112.      some programs for which support of denormals is at the very least quite
  1113.      helpful [41]. In any case, failure of the 3C87 to support extended
  1114.      precision denormal numbers does represent an incompatibility with the
  1115.      Intel 387 and 486 chips.
  1116.  
  1117.      The 3C87 is implemented in an advanced CMOS process and has low power
  1118.      requirements, typically about 600 mW. Like the 387 'clones' from Cyrix
  1119.      and ULSI, the 3C87 does not support asynchronous operation of the CPU
  1120.      and the coprocessor, but always runs at the full speed of the CPU. It is
  1121.      available in 16, 20, 25, 33, and 40 MHz versions.
  1122.  
  1123.  
  1124. IIT 3C87SX
  1125.  
  1126.      This is the version of the IIT 3C87 that is intended for use with
  1127.      Intel's 386SX or AMD's Am386SX CPU, and is functionally equivalent to
  1128.      the IIT3C87. Due to the 16-bit data path between the CPU and the
  1129.      coprocessor in a 386SX- based system, coprocessor instructions will
  1130.      execute somewhat more slowly than on the 3C87. At present, the IIT
  1131.      3C87SX is the only 387SX coprocessor that is offered at speeds of 16,
  1132.      20, 25, and 33 MHz. (I have read that Cyrix has also announced an 83S87-
  1133.      33, but haven't seen it being offered yet.) The 3C87SX is packaged in a
  1134.      68-pin PLCC.
  1135.  
  1136.  
  1137. Cyrix FasMath 83D87
  1138.  
  1139.      This chip was introduced in 1989, only shortly after the coprocessors
  1140.      from IIT. It has been found to be the fastest 387-compatible coprocessor
  1141.      in several benchmark comparisons [1,7,68,69]. It also came out as the
  1142.      fastest coprocessor in my own tests (see benchmark results below).
  1143.      Although the Cyrix 83D87 provides up to 50% more performance than the
  1144.      Intel 387DX in benchmarks comparisons, the speed advantage over other
  1145.      387-compatible coprocessors in real applications is usually much
  1146.      smaller, because coprocessor instructions represent only a small part of
  1147.      the total application code. For example, in a test using the program 3D-
  1148.      Studio, the Cyrix 83D87 was 6% faster than the Intel 387DX [1].
  1149.  
  1150.      Besides being the fastest 387 coprocessor, the 83D87 also offers the
  1151.      most accurate transcendental functions results of all coprocessors
  1152.      tested (see test results below). The new "387+" version of the 83D87,
  1153.      available since November 1991, even surpasses the level of accuracy of
  1154.      the original 83D87 design. Note that the name 387+ is used in European
  1155.      distribution only. In other parts of the world, the new chip still goes
  1156.      by the name 83D87.
  1157.  
  1158.      Unlike Intel's coprocessors, which use the CORDIC [18,19] algorithm to
  1159.      compute the transcendental functions, Cyrix uses polynomial and rational
  1160.      approximations to the functions. In the past the CORDIC method has been
  1161.      popular since it requires only shifts and adds, which made it relatively
  1162.      easy to implement a reasonably fast algorithm. Recently, the cost for the
  1163.      implementation of fast floating-point hardware multipliers has dropped
  1164.      significantly (due to the availability of VLSI), making the use of
  1165.      polynomial and rational approximations superior to CORDIC for the
  1166.      generation of transcendental functions [61]. The Cyrix 83D87 uses a fast
  1167.      array multiplier, making its transcendental functions faster than those
  1168.      of any other 387 compatible coprocessor. It also uses 75 bit for the
  1169.      mantissa in intermediate calculations (as opposed to 68 bits on other
  1170.      coprocessors), making its transcendental functions more accurate than
  1171.      those of any other coprocessor or FPU (see results below).
  1172.  
  1173.      The 83D87 (and its successor, the 387+) are the 387 'clones' with the
  1174.      highest degree of compatibility to the Intel 387DX. A few minor software
  1175.      and hardware incompatibilities have been documented by Cyrix [12]. The
  1176.      software differences are caused by some bugs present in the 387DX that
  1177.      Cyrix fixed in the 83D87. Unlike the Intel 387DX, the 83D87 (and all
  1178.      other 387-compatible chips as well) does not support asynchronous
  1179.      operation of CPU and coprocessor. There were also problems in the past
  1180.      with the CPU-coprocessor communications, causing the 83D87 to
  1181.      occasionally hang on some machines. The reason behind this was that
  1182.      Cyrix shaved off a wait state in the communication protocol, which
  1183.      caused a communications breakdown between the CPU and the 83D87 for some
  1184.      systems running at 25 MHz or faster. (One notable example of this
  1185.      behavior was the Intel 302 board.) Also there were problems with boards
  1186.      based on early revisions of the OPTI chipset. These problem are only
  1187.      rarely encountered with the current generation of 386 motherboards, and
  1188.      it is possible that it has been entirely eliminated in the 387+, the
  1189.      successor to the 83D87.
  1190.  
  1191.      To reduce power consumption the 83D87 features advanced power saving
  1192.      features. Those portions of the coprocessor that are not needed are
  1193.      automatically shut down. If no coprocessor instructions are being
  1194.      executed, *all* parts except the bus interface unit are shut down [12].
  1195.      Maximal power consumption of the Cyrix 83D87 at 33 MHz is 1900 mW, while
  1196.      typical power consumption at this clock frequency is 500 mW [15].
  1197.  
  1198.  
  1199. Cyrix EMC87
  1200.  
  1201.      This coprocessor is basically a special version of the Cyrix 83D87,
  1202.      introduced in 1990. In addition to the normal 387 operating mode, in
  1203.      which coprocessor-CPU communication is handled through reserved IO
  1204.      ports, it also offers a memory-mapped mode of operation similar to the
  1205.      operation principle of the Weitek Abacus. Like the Weitek chip, the
  1206.      EMC87 occupies a block of memory starting at physical address C0000000h
  1207.      (the Abacus occupies a memory block of 64 KB, while the EMC87 uses only
  1208.      4 KB [77]). It can therefore only be accessed in the protected or
  1209.      virtual modes of the 386 CPU. DOS programs can access the EMC87 with the
  1210.      help of DOS extenders or memory managers like EMM386 which run in
  1211.      protected/virtual mode themselves. To implement the memory-mapped
  1212.      interface, the usual 80x87 architecture has been slightly expanded with
  1213.      three additional registers and eleven additional instructions that can
  1214.      only be used if the memory-mapped mode is enabled.
  1215.  
  1216.      Using this special mode of the EMC87 provides a significant speed
  1217.      advantage. The traditional 387 CPU-coprocessor interface via IO ports
  1218.      has an overhead of about 14-20 clock cycles. Since the Cyrix 83D87
  1219.      executes some operations like addition and multiplication in much less
  1220.      time, its performance is actually limited by the CPU-coprocessor
  1221.      interface. Since the memory-mapped mode has much less overhead, it
  1222.      allows all coprocessor instructions to be executed at full speed with no
  1223.      penalty.
  1224.  
  1225.      Originally, Cyrix claimed support for the fast memory-mapped mode of the
  1226.      EMC87 from a number of software vendors (including Borland and
  1227.      Microsoft). However, there are only very few applications that make use
  1228.      of it, among them Evolution Computing's FastCAD 3D, MicroWay Inc.'s NDP
  1229.      FORTRAN-386 compiler, Metaware's High-C compiler version 1.6 and newer,
  1230.      and Intusofts's Spice [63,73]. Part of the problem in supporting the
  1231.      memory-mapped mode is that the application must reserve one of the
  1232.      general purpose registers of the CPU to use memory-mapped mode
  1233.      instructions that access memory.
  1234.  
  1235.      (Note that the EMC87 is *not* compatible with Weitek's Abacus
  1236.      coprocessor. They both use the same CPU interface technique [memory
  1237.      mapping], but while the EMC87 uses the standard 387 instruction set, the
  1238.      Weitek Abacus coprocessors use a different instruction set entirely its
  1239.      own.)
  1240.  
  1241.      Since the EMC87 provides also the standard 386/387 CPU interface via IO
  1242.      ports, it can be used just like any other 387-compatible coprocessor and
  1243.      delivers the same performance as the Cyrix 83D87 in this mode. The EMC87
  1244.      even allows mixed use of memory-mapped and traditional instructions in
  1245.      the same code. Cyrix has also implemented some additional instructions
  1246.      in the EMC87 that are also available in the 387-compatible mode:
  1247.      FRICHOP, FRINT2, and FRINEAR. These instructions enable rounding to
  1248.      integer without setting the rounding mode by manipulating the
  1249.      coprocessor control word, and are intended to make life easier for
  1250.      compiler writers.
  1251.  
  1252.      In a test, the EMC87 at 33 MHz ran the single-precision Whetstone
  1253.      benchmark at 7608 kWhetstones/sec, while the Cyrix 83D87 at 33 MHz had a
  1254.      speed of only 5049 kWhetstones/sec, an increase of 50.6% [63]. In
  1255.      another test, the EMC87 ran a fractal computation at twice the speed of
  1256.      the Cyrix 83D87 and 2.6 times as fast as an Intel 387DX [64]. A third
  1257.      test found the EMC87's overall performance to be 20% higher than the
  1258.      performance of the Cyrix 83D87 [65].
  1259.  
  1260.      The Cyrix FasMath EMC87 has also been marketed as Cyrix AutoMATH; the
  1261.      two chips are identical. Unlike the Cyrix 83D87, which fits into the 68-
  1262.      pin 387 coprocessor socket, the EMC87 comes in a 121-pin PGA and
  1263.      requires the 121-pin EMC (Extended Math Coprocessor) socket. Note that
  1264.      not all boards have such a socket (a notable exception being IBM's
  1265.      PS/2s, for example). The EMC87 is available 25 and 33 MHz versions.
  1266.      Maximum power consumption at 33 MHz is 2000 mW.
  1267.  
  1268.      Cyrix appears currently to be phasing out the EMC87.
  1269.  
  1270.  
  1271. Cyrix FasMath 387+
  1272.  
  1273.      This chip is the second-generation successor to the Cyrix 83D87. (The
  1274.      name "387+" is only used for European distribution; in other parts of
  1275.      the world, it goes by the original 83D87 designation.) According to a
  1276.      source within Cyrix [73], the 387+ was designed to make a smaller (and
  1277.      thus cheaper to manufacture) coprocessor chip that could also be pushed
  1278.      to higher frequencies than the original chip: the 387+ is available in
  1279.      versions of up to 40 MHz, whereas the original 83D87 could go no faster
  1280.      than 33 MHz.
  1281.  
  1282.      The Cyrix 387+ is ideally suited to be used with Cyrix's 486DLC CPU,
  1283.      which is a 486SX compatible replacement chips for the Intel 386DX.
  1284.      Indeed Cyrix sells upgrade kits consisting of a 486DLC CPU and a
  1285.      Cyrix 387+.
  1286.  
  1287.      In my tests, I found the Cyrix 387+ to be about five to 10 percent
  1288.      *slower* than the Cyrix 83D87. However, some instructions like the
  1289.      square root (FSQRT) now run at only half the speed at which they ran in
  1290.      the 83D87, and most transcendental functions show about a 40% drop in
  1291.      performance compared to their 83D87 averages (see performance results,
  1292.      below). However, I did find the transcendental functions on the 387+ to
  1293.      be a bit *more* accurate than those implemented in the 83D87. The new
  1294.      design uses a slower hardware multiplier that needs six clock cycles to
  1295.      multiply the floating-point mantissa of an internal precision number,
  1296.      while the multiplier in the 83D87 takes only 4 clocks to accomplish the
  1297.      same task. Since the transcendental functions in Cyrix math coprocessors
  1298.      are generated by polynomial and rational approximations, this slows them
  1299.      down significantly.
  1300.  
  1301.      The divide/square root logic has also been changed from the 83D87
  1302.      design. The original design used an algorithm that could generate both
  1303.      the quotient and square root, so the execution times for these
  1304.      instructions were nearly identical. The algorithm chosen for the
  1305.      division in the 387+ doesn't allow the square root to be taken so
  1306.      easily, so it takes nearly twice as long.
  1307.  
  1308.      In the 387+, the available argument range for the FYL2XP1 instruction
  1309.      has been extended, from the usual range -1+sqrt(2)/2..sqrt(2)/2 that is
  1310.      found on all 80x87 coprocessors, to include all floating-point numbers.
  1311.      Also, four additional instructions have been implemented: FRICHOP
  1312.      (opcode DD FC), FRINT2 (opcode DB FC), FRINEAR (opcode DF FC), and FTSTP
  1313.      (opcode D9 E6).
  1314.  
  1315.  
  1316. Cyrix FasMath 83S87
  1317.  
  1318.      The 83S87 is the SX version of the Cyrix 83D87. Just as the 83D87 is the
  1319.      fastest 387-compatible coprocessor, the Cyrix 83S87 is the fastest of
  1320.      the 387SX compatible coprocessors [1], as well as providing the most
  1321.      accurate transcendental functions. 83S87 chips manufactured after 1991
  1322.      use the internals of the Cyrix 387+, the successor to the original 83D87
  1323.      [73] (above). The Cyrix 83S87 is ideally suited to be used with the
  1324.      Cyrix Cx486SLC CPU, a 486SX compatible CPU which is a replacement chip
  1325.      for the Intel 386SX CPU.
  1326.  
  1327.      The 83S87 is packaged in a 68-pin PLCC and is available in 16, 20, and
  1328.      25 MHz versions. Due to the advanced power saving features of the Cyrix
  1329.      coprocessor, the typical power consumption of the 20 MHz version is only
  1330.      about 350 mW [67].
  1331.  
  1332.  
  1333. ULSI Math*Co 83C87
  1334.  
  1335.      The ULSI 83C87 is an 80387-compatible coprocessor first introduced in
  1336.      early 1991, well after the IIT 3C87 and Cyrix 83D87 appeared. Like other
  1337.      387 clones, it is somewhat faster than the Intel 387DX, particularly in
  1338.      its basic arithmetic functions. The transcendental functions, however,
  1339.      show only a slight speed improvement over the Intel 387DX (see benchmark
  1340.      results below).
  1341.  
  1342.      In my tests, the ULSI had the most inaccurate transcendental functions
  1343.      of all tested coprocessors. However, the maximum relative error is still
  1344.      within the limits set by Intel, so this is probably not an important
  1345.      issue for all but a very few applications. The ULSI 83C87 shows some
  1346.      minor flaws in the tests for IEEE 754 compatibility, but this, too, is
  1347.      probably unimportant under typical operating conditions. ULSI claims
  1348.      that the program IEEETEST, which was used to test for IEEE
  1349.      compatibility, contains many personal interpretations of the IEEE
  1350.      standard by the program's author and states that there is no ANSI-
  1351.      certified IEEE-754 compliance test. While this may be true, it is
  1352.      also a fact that the IEEE test vectors used in IEEETEST are a de facto
  1353.      industry standard, and that Intel's 387, 486, and RapidCAD chips pass it
  1354.      without a single failure, as do the coprocessors from Cyrix. Since the
  1355.      ULSI Math*Co 83C87 fails some of the tests, it is certainly less than
  1356.      100% compatible with Intel's chips, although this will likely make
  1357.      little or no difference in typical operating conditions. (It is
  1358.      interesting to note that an ULSI 83S87 manufactured in 92/17 showed
  1359.      fewer errors in the IEEETEST test run [74] than the ULSI 83C87,
  1360.      manufactured in 91/48, I used in my original test. This indicates that
  1361.      ULSI might have applied some quick fixes to newer revisions of their
  1362.      math coprocessors.)
  1363.  
  1364.      The ULSI 83C87 fails to be compatible with the IEEE-754 in that is does
  1365.      not implement the "precision control" feature. While all the internal
  1366.      operations of 80x87 coprocessors are usually performed with the maximum
  1367.      precision available (double-extended precision with 64 mantissa bits),
  1368.      the 80x87 architecture also offer the possibility to force lower
  1369.      precision to be used for the basic arithmetic functions (add, subtract,
  1370.      multiply, divide, and square root). This feature is required by IEEE-754
  1371.      for all coprocessors that can not store results *directly* to a single
  1372.      or double-precision location. Since 80x87 coprocessors lack this storage
  1373.      capability, they all implement precision control to provide correctly
  1374.      rounded single- and double-precision results according to the floating-
  1375.      point standard - except the ULSI chips. For programs that make use of
  1376.      precision control (e.g., Interactive UNIX), correct implementation of
  1377.      the feature may be essential for correct arithmetic results.
  1378.  
  1379.      Like other non-Intel 387 compatibles, the 83C87 does not support
  1380.      asynchronous operation of the CPU and the coprocessor. This means that
  1381.      the 83C87 always runs at the full speed of the CPU. It is available in
  1382.      20, 25, 33, and 40 MHz versions. The ULSI is produced in low power CMOS;
  1383.      power consumption at 20 MHz is max. 800 mW (400 mW typical), at 25 MHz
  1384.      it is max. 1000 mW (500 mW typical), at 33 MHz it is max. 1250 mW (625
  1385.      mW), and at 40 MHz it is max. 1500 mW (750 mW typical) [58]. The 83C87
  1386.      is packaged in a 68-pin ceramic PGA.
  1387.  
  1388.      ULSI coprocessors come with a lifetime warranty. ULSI Systems, Inc.,
  1389.      will replace the coprocessor up to three times free of charge should it
  1390.      ever fail to function properly.
  1391.  
  1392.  
  1393. ULSI Math*Co 83S87
  1394.  
  1395.      This chip is the SX version of the ULSI 83C87, for use in systems with
  1396.      an Intel 387SX or an AMD Am387SX CPU. It is functionally equivalent to
  1397.      the 83C87. To aid low-power laptop designs, the ULSI 83S87 features an
  1398.      advanced power saving design with a sleep mode and a standby mode with
  1399.      only minimal power requirements. Power consumption under normal
  1400.      operating conditions (dynamic mode) is max. 400 mW at 16 MHz (300 mW
  1401.      typical), max. 450 mW at 20 MHz (350 mW typical), and max. 500 mW at 25
  1402.      MHz (400 mW typical) [58]. The ULSI 83S87 is packaged in a 68-pin PLCC.
  1403.  
  1404.  
  1405. C&T SuperMATH 38700DX
  1406.  
  1407.      Produced by Chips&Technologies, this is the latest entry into the 387-
  1408.      compatible marketplace. Originally announced in October, 1991, it has
  1409.      apparently not been available to end-users before the third quarter of
  1410.      1992, at least here in Germany. My tests show that its compatibility
  1411.      with Intel products is very good, even for the more arcane features of
  1412.      the 387DX and comparable to the coprocessors from Cyrix. Like these
  1413.      chips, it passes the IEEETEST program without a single failure. It
  1414.      passes, of course, all tests in Chips&Technologies' own compatibility
  1415.      test program, SMDIAG. However, some of the tests (the transcendental
  1416.      functions) in this program are selected in such a way that the C&T 38700
  1417.      passes while the Cyrix 83D87 or Intel RapidCAD fail, so they are not
  1418.      very useful. (There is also a 'bug' in the test for FSCALE that hides a
  1419.      true bug in the C&T 38700.) My tests show the accuracy of the
  1420.      transcendental functions on the C&T 38700DX varies. Overall, accuracy of
  1421.      the transcendentals is slightly better than on the Intel 387DX.
  1422.  
  1423.      In my own speed tests [see below] and those reported in [1], the C&T
  1424.      38700DX showed performance at about 90-100% the level of the Cyrix
  1425.      83D87, which is the 387 clone with the highest performance. For
  1426.      floating-point-intensive benchmarks, the C&T 38700DX provides up to 50%
  1427.      more computational performance than the Intel 387DX. However, as with
  1428.      all other 387 compatible coprocessors, the speed advantage over the
  1429.      Intel 387DX is far less significant in real applications.
  1430.  
  1431.      The SuperMATH 38700DX is implemented in 1.2 micron CMOS with on-chip
  1432.      power management, which makes for low power consumption. The 38700DX is
  1433.      packaged in a 68-pin ceramic PGA (pin grid array and available in speeds
  1434.      of 16, 20, 25, 33, and 40 MHz.
  1435.  
  1436.  
  1437. C&T 38700SX
  1438.  
  1439.      This chip is the SX version of the 38700DX and compatible with the Intel
  1440.      387SX. It provides performance comparable to a Cyrix 83S87 [1], the
  1441.      387SX clone with the highest performance. Compatibility with the Intel
  1442.      387SX is very good and on par with the high degree of the compatibility
  1443.      found in the Cyrix 83S87.
  1444.  
  1445.      The 38700SX has low power consumption. It is packaged in a 68-pin PLCC
  1446.      (plastic leaded chip carrier) and available in speeds of 16, 20, and 25
  1447.      MHz.
  1448.  
  1449.  
  1450. Intel RapidCAD
  1451.  
  1452.      The RapidCAD is not a coprocessor, strictly seen, although it is
  1453.      marketed as one. Rather, it is a full replacement for a 80386 CPU:
  1454.      basically, an Intel 486DX CPU chip without the internal cache and with a
  1455.      standard 386 pinout. RapidCAD is delivered as a set of two chips.
  1456.      RapidCAD-1 goes into the 386 socket and contains the CPU and FPU.
  1457.      RapidCAD-2 goes into the coprocessor (387) socket and contains a simple
  1458.      PAL whose only purpose is to generate the FERR signal normally generated
  1459.      by a coprocessor (This is needed by the motherboard circuitry to provide
  1460.      287 compatible coprocessor exception handling in 386/387 systems.) The
  1461.      RapidCAD instruction set is compatible with the 386, so it doesn't have
  1462.      any newer, 486-specific instructions like BSWAP. However, since the
  1463.      RapidCAD CPU core is very similar to 80486 CPU core, most of the
  1464.      register-to-register instructions execute in the same number of clock
  1465.      cycles as on the 486.
  1466.  
  1467.      RapidCAD's use of the standard 386 bus interface causes instructions
  1468.      that access memory to execute at about the same speed as on the 386. The
  1469.      integer performance on the RapidCAD is definitely limited by the low
  1470.      memory bandwidth provided by this interface (2 clock cycles per bus
  1471.      cycle) and the lack of an internal cache. CPU instructions often execute
  1472.      faster than they can be fetched from memory, even with a big and fast
  1473.      external cache. Therefore, the integer performance of the RapidCAD
  1474.      exceeds that of a 386 by *at most* 35%. This value was derived by
  1475.      running some programs that use mostly register-to-register operations
  1476.      and few memory accesses, and is supported by the SPEC ratings that Intel
  1477.      reports for the 386-33 and the RapidCAD-33: while the 386-33 has a
  1478.      SPECint of 6.4, the RapidCAD has a SPECint of 7.3 [28], a 14% increase.
  1479.      (Note that these tests used the old [1989] SPEC benchmarks suite.)
  1480.  
  1481.      While CPU and integer instructions often execute in one clock cycle on
  1482.      the RapidCAD, floating-point operations always take more than seven
  1483.      clock cycles. They are therefore rarely slowed down by the low-bandwidth
  1484.      386 bus interface; My tests show a 70%-100% performance increase for
  1485.      floating-point intensive benchmarks over a 386-based system using the
  1486.      Intel 387DX math coprocessor. This is consistent with the SPECfp rating
  1487.      reported by Intel. The 386/387 at 33 MHz is rated at 3.3 SPECfp, while
  1488.      the RapidCAD is rated at 6.1 SPECfp at the same frequency, an 85%
  1489.      increase. This means that a system that uses the RapidCAD is faster than
  1490.      *any* 386/387 combination, regardless of the type of 387 used, whether
  1491.      an Intel 387DX or a faster 387 clone. The diagnostic disk for the
  1492.      RapidCAD also gives some application performance data for the RapidCAD
  1493.      compared to the Intel 387DX:
  1494.  
  1495.              Application      Time w/ 387DX  Time w/ RapidCAD  Speedup
  1496.  
  1497.              AutoCAD 11              52 sec         32 sec       63%
  1498.              AutoShade/Renderman    180 sec        108 sec       67%
  1499.              Mathematica(Windows  ) 139 sec        103 sec       35%
  1500.              SPSS/PC+ 4.01           17 sec         14 sec       21%
  1501.  
  1502.      RapidCAD is available in 25 MHz and 33 MHz versions. It is distributed
  1503.      through different channels than the other Intel math coprocessors, and I
  1504.      have therefore been unable to obtain a data sheet for it. [78] gives the
  1505.      typical power consumption of the 33 MHz RapidCAD as 3500 mW, which is
  1506.      the same as for the 33 MHz 486DX. The RapidCAD-1 chip gets quite hot
  1507.      when operating. Therefore, I recommend extra cooling for it (see the
  1508.      paragraph below on the 486 for details). The RapidCAD-1 is packaged in a
  1509.      132-pin PGA, just like the 80386, and the RapidCAD-2 is packaged in a
  1510.      68-pin PGA like a 80387 coprocessor.
  1511.  
  1512.  
  1513. Intel 486DX
  1514.  
  1515.      The Intel 486DX is, of course, not solely a coprocessor. This chip,
  1516.      first introduced by Intel in 1989, functionally combines the CPU (a
  1517.      heavily-pipelined implementation of the 386 architecture) with an
  1518.      enhanced 387 (the chip's floating-point unit, FPU) and 8 KB of unified
  1519.      on-chip code/data cache. (This description is necessarily simplified;
  1520.      for a detailed hardware description, see [52].) The 486DX offers about
  1521.      two to three times the integer performance of a 386 at the same clock
  1522.      frequency, while floating-point performance is about three to four times
  1523.      as high as the Intel 387DX at the same clock rate [29]. Since the FPU is
  1524.      on the same chip as the CPU, the considerable communication overhead
  1525.      between CPU and coprocessor in a 386/387 system is omitted, letting FPU
  1526.      instructions run at the full speed permitted by the implementation. The
  1527.      FPU also takes advantage of the on-chip cache and the highly pipelined
  1528.      execution unit. The concurrent execution of CPU and coprocessor
  1529.      instructions typical for 80x86/80x87 systems is still in existence on
  1530.      the 486, but some FPU instructions like FSIN have nearly no concurrency
  1531.      with CPU instructions, indicating that they make heavy use of both, CPU
  1532.      and FPU resources [53, 1].
  1533.  
  1534.      Besides its higher performance, the 486 FPU provides more accurate
  1535.      transcendental functions than the 387DX coprocessor, according to my
  1536.      tests (see below). To achieve better interrupt latency, FPU instructions
  1537.      with a long execution times have been made abortable if an interrupt
  1538.      occurs during their execution.
  1539.  
  1540.      Due to the considerable amount of heat produced by these chips, and
  1541.      taking into consideration the slow air flow provided by the fan in
  1542.      garden-variety PC tower cases, I recommend an extra fan directly above
  1543.      the CPU for safer operation. If you measure the surface temperature of
  1544.      an 486DX after some time of operation in a normal tower case without
  1545.      extra cooling, you may well come up with something like 80-90 degrees
  1546.      Celsius (that is 175-195 degrees Fahrenheit for those not familiar with
  1547.      metric units) [54,55]. You don't need the well known (and expensive)
  1548.      IceCap[tm] to effectively cool your CPU; a simple fan mounted directly
  1549.      above the CPU can bring the temperature of the chip down to about 50-60
  1550.      degrees Celsius (120-140 degrees Fahrenheit), depending on the room
  1551.      temperature and the temperature within the PC case (which depends on the
  1552.      total power dissipation of all the components and the cooling provided
  1553.      by the fan in the system's power supply). According to a simple rule
  1554.      known as Arrhenius' Law, lowering the temperature by 10 degrees Celsius
  1555.      slows down chemical reactions by a factor of two, so lowering the
  1556.      temperature of your CPU by 30 degrees should prolong the life of the
  1557.      device by a factor of eight, due to the slower ageing process. If you
  1558.      are reluctant to add a fan to your system because of the additional
  1559.      noise, settle for a low-noise fan like those available from the German
  1560.      manufacturer Pabst (this is not meant to be an advertisement; I am just
  1561.      the happy owner of such a fan, and have no other connections to the
  1562.      firm).
  1563.  
  1564.      The 486DX comes in a 168 pin ceramic PGA (pin grid array). It is
  1565.      available in 25 MHz and 33 MHz versions. Since the end of 1991, a 50 MHz
  1566.      version has also been available, manufactured by a CHMOS V process (the
  1567.      25 MHz and 33 MHz are produced using the CHMOS IV process). Maximum
  1568.      power consumption is 3500 mW for the 25 MHz 486 (2600 mW typical), 4500
  1569.      mW for the 33 MHz version (3500 mW typical), and 5000 mW (3875 mW
  1570.      typical) for the 50 MHz chip.
  1571.  
  1572.  
  1573. Intel 486DX2
  1574.  
  1575.      The 486DX2 represents the latest generation of Intel CPUs. The "DX2"
  1576.      suffix (instead of simply DX) is meant to be an indicator that these are
  1577.      clock-doubled versions of the basic CPU. A normal 486DX operates at the
  1578.      frequency provided by the incoming clock signal. A 486DX2 instead
  1579.      generates a new clock signal from the incoming clock by means of a PLL
  1580.      (phase locked loop). In the DX2, this clock signal has twice the
  1581.      frequency of the incoming clock, hence the name clock-doubler. All
  1582.      internal parts of the 486DX2 (cache, CPU core, and FPU) run at this
  1583.      higher frequency; only the bus interface runs at the normal (undoubled)
  1584.      speed. Using this technique, an Intel 486DX2-50 can run on an unmodified
  1585.      motherboard designed for 25 MHz operation. Since motherboards which run
  1586.      at 50 MHz are much harder to design and build than those for 25 MHz,
  1587.      this makes a 486DX2-50 system cheaper than an 'equivalent' 486DX-50
  1588.      system.
  1589.  
  1590.      For all operations that don't access off-chip resources (e.g., register
  1591.      operations), a 486DX2-50 provides exactly the same performance as a
  1592.      486DX-50, and twice the performance of a 486DX-25. However, since the
  1593.      main memory in a 486DX2-50 systems still operates at 25 MHz, all
  1594.      instructions involving memory accesses are potentially slower than in a
  1595.      486DX-50 system, whose memory also (presumably) runs at 50 MHz. The
  1596.      internal cache of the 486 helps this problem a bit, but overall
  1597.      performance of a 486DX2-50 is still lower than that of a 486DX-50.
  1598.      Intel's documentation [32] shows this drop to be quite small, although
  1599.      it is highly dependent upon the particular application.
  1600.  
  1601.      The truly wonderful thing about the 486DX2 is that it allows easy
  1602.      upgrading of 25 and 33 MHz 486 systems, since the 486DX2 is completely
  1603.      pin-compatible with the 486DX: you need just take out the 486DX and plug
  1604.      in the new 486DX2. Note that power consumption of the 486DX2-50 equals
  1605.      that of the 486DX-50 (4000 mW typical, 4750 mW max.), and that the
  1606.      486DX2-66 exceeds this by about 25% (4875 mW typical, 6000 mW max.).
  1607.      These chips get *really* hot in a standard PC case with no extra
  1608.      cooling, even if they come with an attached heat sink by default. (See
  1609.      the discussion above for more detailed information on this problem and
  1610.      possible solutions).
  1611.  
  1612.  
  1613. Intel 487SX
  1614.  
  1615.      The 487SX is the math coprocessor intended for use in 486SX systems. The
  1616.      486SX is basically a 486DX without the floating-point unit (FPU) [48,
  1617.      50]. (Originally Intel sold 486DXs with a defective FPU as 486SXs but it
  1618.      has now completely removed the FPU part from the 486SX mask for mass
  1619.      production.) The introduction of the 486SX in 1991 has been viewed by
  1620.      many as a marketing 'trick' by Intel to take market share from the 386
  1621.      based systems once AMD became successful with their Am386. (AMD has
  1622.      taken as much as 40% of the 386 market due to some superior features
  1623.      such as higher clock frequency, lower power consumption, fully static
  1624.      design, and availability of a 3V version). A 486SX at 20 MHz delivers
  1625.      a bit less integer performance than a 40 MHz Am386.
  1626.  
  1627.      To add floating-point capabilities to a 486SX based system, it would
  1628.      seem to be easiest to swap the 486SX for a 486DX, which includes the FPU
  1629.      on-chip. However, Intel has prevented this easy solution by giving the
  1630.      486SX a slightly different pin out [48, 51]. Since only three pins are
  1631.      assigned differently, clever board manufacturers have come out with
  1632.      boards that accept anything from a 486SX-20 to a 486DX2-50 in their CPU
  1633.      socket and by doing so provide a clean upgrade path. A set of three
  1634.      jumpers ensures correct signal assignment to the changed pins for either
  1635.      CPU type. To upgrade 486SX systems without this feature, you are forced
  1636.      to buy a 487SX and install it in the "Performance Upgrade Socket"
  1637.      (present in most systems).
  1638.  
  1639.      Once the 487SX was available, it was quickly found out that it is just a
  1640.      normal 486DX with a slightly different pinout [49]. Technically
  1641.      speaking, the solution Intel chose was the only practical way to provide
  1642.      a 486SX system with the high level of floating-point performance the
  1643.      486DX offers. The CPU and FPU must be on the same chip; otherwise, the
  1644.      FPU cannot make use of the CPU's internal cache and there would be
  1645.      considerable overhead in CPU-FPU communication (similar to a 386/387
  1646.      system), nullifying most of the arithmetic speedups over the 387. That
  1647.      the 486SX, 487SX, and 486DX are *not* pin-compatible seems to be purely
  1648.      for marketing reasons.
  1649.  
  1650.      To upgrade a 486SX based system, Intel also offers the OverDrive chip,
  1651.      which is just the same as a 487SX with internal clock doubling. It also
  1652.      goes into the motherboard's "Performance Upgrade Socket". The OverDrive
  1653.      roughly doubles the performance of a 486SX/487SX based system. (For a
  1654.      explanation of clock doubling, see the description of the Intel 486DX2
  1655.      above.)
  1656.  
  1657.      Inserting the 487SX effectively shuts down the 486SX in the 486SX/487SX
  1658.      system, so the 486SX could be removed once the 487SX is installed. Since
  1659.      the shut down is logical, not electrical, the 486SX still uses power if
  1660.      used with the 487SX, although it is inoperational. As with the 486SX,
  1661.      the 487SX is currently available in 20 MHz and 25 MHz versions. At 20
  1662.      MHz, the 487SX has a power consumption of max. 4000 mW (3250 mW
  1663.      typical). It is available in a 169 pin ceramic PGA (pin grid array).
  1664.  
  1665.  
  1666. Weitek 1167
  1667.  
  1668.      This math coprocessor was the predecessor of the Weitek Abacus 3167. It
  1669.      was actually a small printed circuit board with three chips mounted on
  1670.      it. In contrast to the Weitek 3167, the 1167 did not have a square root
  1671.      instruction; instead, the square root function was computed by means of
  1672.      a subroutine in the Weitek transcendental function library. However, the
  1673.      1167 did have a mode in which it supported denormal numbers. (The Weitek
  1674.      3167 and 4167 only implement the 'fast' mode, in which denormals are not
  1675.      supported.) Overall performance of the 1167 is slightly less than that
  1676.      of the Weitek 3167.
  1677.  
  1678.  
  1679. Weitek 3167
  1680.  
  1681.      The 3167 was introduced by Weitek in 1989 and provided the fastest
  1682.      floating-point performance possible on a 386 based system at that time.
  1683.      The 3167 is not a real coprocessor, strictly speaking, but rather a
  1684.      memory-mapped peripheral device. The architecture of the 3167 was
  1685.      optimized for speed wherever possible. Besides using the faster memory
  1686.      mapped interface to the CPU (the 80x87 uses IO-ports), it does not
  1687.      support many of the features of the 80x87 coprocessors, allowing all of
  1688.      the chip's resources to be concentrated on the fast execution of the
  1689.      basic arithmetic operations. (For a more detailed description of the
  1690.      Weitek 3167, see the first chapter of this document.)
  1691.  
  1692.      In benchmark comparisons, the Weitek 3167 provided up to 2.5 times the
  1693.      performance of an Intel 387DX coprocessor. For example, on a 33 MHz 3167
  1694.      the Whetstone benchmark performed at 7574 kWhetstones/sec compared with
  1695.      the 3743 kWhetstones/s for the Intel 387DX. (Note, however, that these
  1696.      are single-precision results and that the Weitek 3167's performance
  1697.      would drop to about half the stated rate for double-precision, while the
  1698.      value for the Intel 387DX would change very little.) In any case, before
  1699.      the advent of the Intel RapidCAD, the Weitek 3167 usually outperformed
  1700.      all 387-compatible coprocessors, even for double-precision operations
  1701.      [63,65,69]. For typical applications, the advantage of the Weitek 3167
  1702.      over the 387 clones is much smaller. In a benchmark test using
  1703.      AutoDesk's 3D-Studio the Weitek 3167 performed at 123% of the Intel
  1704.      387DX's performance compared with 106% for the Cyrix FasMath 83D87 and
  1705.      118% for the Intel RapidCAD.
  1706.  
  1707.      The Weitek Abacus 3167 is packaged in a 121-pin PGA that fits into an
  1708.      EMC socket (provided in most 386-based systems). It does *not* fit into
  1709.      the normal 68-pin PGA socket intended for a 387 coprocessor.
  1710.  
  1711.      To get the best of both worlds, one might want to use a Weitek 3167 and
  1712.      a 387 compatible coprocessor in the same system. These coprocessors can
  1713.      coexist in the same system without problems; however, most 386-based
  1714.      systems contain only one coprocessor socket, usually of the EMC
  1715.      (extended math coprocessor) type. Thus, you can install either a 387
  1716.      coprocessor or a Weitek 3167, but not both at the same time. There *are*
  1717.      small daughter boards available that plug into the EMC socket and
  1718.      provide two sockets, an EMC and a standard coprocessor socket.
  1719.  
  1720.      At 25 MHz, the Weitek 3167 has a power consumption of max. 1750 mW. At
  1721.      33 MHz, max. power consumption is 2250 mW.
  1722.  
  1723.  
  1724. Weitek 4167
  1725.  
  1726.      The 4167 is a memory-mapped coprocessor that has the same architecture
  1727.      as the 3167; it is designed to provide 486-based systems with the
  1728.      highest floating-point performance available. It executes coprocessor
  1729.      instructions at three to four times the speed of the Weitek 3167.
  1730.      Although it is up to 80% faster than the Intel 486 in some benchmarks
  1731.      [1,69], the performance advantage for real application is probably more
  1732.      like 10%. The introduction of the 486DX2 processors has more or less
  1733.      obliterated the need for a Weitek 4167, since the DX2 CPUs provide the
  1734.      same performance as the Weitek, as well as the additional features the
  1735.      80x87 architecture has that the Weitek does not.
  1736.  
  1737.      The Weitek 4167 is packaged in a 142-pin PGA package that is only
  1738.      slightly smaller than the 486's package. At 25 MHz, it has a max. power
  1739.      consumption of 2500 mW [32].
  1740.  
  1741.  
  1742.  
  1743. ======================================
  1744. Finding out which coprocessor you have
  1745. ======================================
  1746.  
  1747. If you are interested in programming techniques which allow the detection and
  1748. differentiation of the coprocessors described above, I refer you to my
  1749. COMPTEST program. COMPTEST reliably detects the type and clock frequency of
  1750. the CPU and coprocessor installed in your machine. The current version is
  1751. CTEST257.ZIP, with future versions to be called CTEST258, CTEST259 and so on.
  1752. COMPTEST can correctly identify all of the coprocessors described above, with
  1753. the exception of the Weitek chips, for which the detection mechanism is not
  1754. that reliable.
  1755.  
  1756. COMPTEST is in the public domain and comes with complete source code. It is
  1757. available via anonymous ftp from garbo.uwasa.fi and additional ftp sites that
  1758. mirror garbo.
  1759.  
  1760.  
  1761.  
  1762. ================================================
  1763. Current coprocessor prices and purchasing advice
  1764. ================================================
  1765.  
  1766. Due to mid-1992 price slashing by Cyrix (and subsequently, Intel) for 387
  1767. coprocessors, prices have dropped significantly for all 287 and 387
  1768. compatibles, with hardly any price difference between manufacturers. 387DX
  1769. compatible coprocessors typically sell for ~US$ 80 for all speeds except for
  1770. 40 MHz versions, which are typically ~US$ 90. 387SX compatible coprocessors
  1771. sell for ~US$ 70, regardless of speed, with the exception of the 33 MHz
  1772. versions, which are ~US$ 80. The Intel 287XL sells for ~US$ 90, while the
  1773. IIT 2C87 and Cyrix 82S87 each sell for about US$ 60. 8087s may be more
  1774. expensive, the price of an 8087-10 being ~US$ 150. I purchased the Intel
  1775. RapidCAD for US$ 300 and haven't seen it offered for a better price. I see the
  1776. Weitek Abacus 3167-33 being offered for US$ 230 and the 4167-33 being offered
  1777. for US$ 850. The Intel 486SX OverDrive is available for ~US$ 570 for the 20 MHz
  1778. version, while the Intel 486DX2-50 costs ~650 US$. This price information
  1779. reflects the price situation as of 01-11-93; prices can be expected to drop
  1780. slightly in the near future.
  1781.  
  1782.  
  1783. Which coprocessor should you buy?
  1784. ---------------------------------
  1785. Several computer magazines have published application-level performance
  1786. comparisons for various 387 coprocessors and Weitek's ABACUS 3167 and 4167
  1787. chips [1,25,68,70]. Applications tested included AutoCAD R11, RenderStar,
  1788. Quattro Pro, Lotus 1-2-3, and AutoDesk's 3D-Studio. For most tests,
  1789. performance improvements for the 387 clones over Intel's 387DX were small to
  1790. marginal, the clones running the applications no more than 5-15% faster than
  1791. the Intel 387DX. In the test of 3D-Studio, one of the few programs that
  1792. directly supports the Weitek Abacus, the Weitek 3167 improved performance by
  1793. 23% over an Intel 387DX and the 4167 improved performance by 10% over the
  1794. 486DX [1].
  1795.  
  1796. If you have a demand for high floating-point performance, you should consider
  1797. buying a full 486-based system, rather than a 386-based system with an
  1798. additional coprocessor. Consider: A 386/33 MHz motherboard currently sells for
  1799. ~US$ 270; together with the coprocessor, the cost totals ~US$ 350. A 486/33 MHz
  1800. ISA motherboard sells for US$ 650. While this means that the 486 system is 85%
  1801. more expensive than the 386/387 system, it also provides 100% more integer
  1802. and floating-point performance (twice the performance), giving it better
  1803. price/performance for math-intensive applications. As prices for 486 chips
  1804. fall in the future, the price difference between these two systems should
  1805. become even smaller.
  1806.  
  1807. If you want to push your 386-based system to its maximum floating-point
  1808. performance and can't switch to a 486, I recommend the Intel RapidCAD
  1809. chipset. It is both faster [1] and cheaper than installing a Weitek Abacus
  1810. 3167 in a 386 system, which used to be the highest performing combination
  1811. before the RapidCAD was introduced.
  1812.  
  1813. In a similar vein, the introduction of the Intel 486DX2 clock-doubler chips
  1814. has obliterated the need for a Weitek 4167 to get maximum floating-point
  1815. performance out of a 486-based system. A 486DX2-66 performs at or above the
  1816. performance level of a 33 MHz Weitek 4167, even if the latter uses single-
  1817. precision rather than double-precision. The 486DX-66 is rated by Intel at
  1818. 24700 double-precision kWhetstones/sec and 3.1 double-precision Linpack
  1819. MFLOPS. (Of course, these benchmarks used the highest performance compilers
  1820. available. But even with a Turbo Pascal 6.0 program, I managed to squeeze 1.6
  1821. double-precision MFLOPS out of the 486DX2-66 for the LLL benchmark [for a
  1822. description of these benchmarks, see the paragraph on benchmarks below].)
  1823. Although I haven't yet seen 486DX2-66 processors being offered to end users
  1824. for upgrade purposes, I recommend the 486DX2-66 to those that need highest
  1825. floating-point performance and are planning to buy a new PC. The price
  1826. difference between a 33 MHz 486DX motherboard and a 486DX2-66 motherboard is
  1827. around US$ 450, well below the price for the Weitek Abacus 4167.
  1828.  
  1829.  
  1830.  
  1831. ============================================================
  1832. The benchmark programs / Coprocessor performance comparisons
  1833. ============================================================
  1834.  
  1835. The performance statistics below were put together with the help of four
  1836. widely-known numeric benchmarks and two benchmarks developed by me. Three
  1837. Pascal programs, one FORTRAN program, and two assembly language programs were
  1838. used. The assembly language programs were linked with Borland's Turbo Pascal
  1839. 6.0 for library support, especially to include the coprocessor emulator of
  1840. the TP 6.0 run-time library. The Pascal programs were compiled with Turbo
  1841. Pascal 6.0, a non-optimizing compiler that produces 16-bit code. The FORTRAN
  1842. program was compiled using Microsoft's FORTRAN 5.0, an optimizing compiler
  1843. that generates 16-bit code. All programs use double-precision variables
  1844. (except PEAKFLOP and SAVAGE, which use double extended precision).
  1845.  
  1846. Note that the use of a highly optimizing compiler producing 32-bit code can
  1847. give much higher performance for some benchmarks. For example, Intel rates
  1848. the 33 MHz 386/387DX at 3290 kWhetstones/sec and 0.4 double-precision LINPACK
  1849. MFLOPS [28,29], and it rates the Intel 486 at 12300 kWhetstones/sec and 1.6
  1850. double-precision LINPACK MFLOPS [30]. The compilers used in these benchmarks
  1851. run by the chip's manufacturer are the ones that give the highest performance
  1852. available, and sell in the US$ 1000+ price range. Some of them may even be
  1853. experimental or prereleased versions not available to the general public. The
  1854. relative performance of one coprocessor to another can and does vary greatly
  1855. depending on the code generated by compilers. Non-optimizing compilers tend
  1856. to generate a high percentage of operations which access variables in memory,
  1857. while optimizing compiler produce code that contains many operations
  1858. involving registers. Thus it is well possible that coprocessor A beats
  1859. coprocessor B running benchmark Z if compiled with compiler C, but B beats A
  1860. when the same benchmark is compiled using compiler D.
  1861.  
  1862. All benchmark in this overview were run from floppy under a 'bare-bones' MS-
  1863. DOS 5.0 without the CONFIG.SYS and AUTOEXEC.BAT files. This way, it was made
  1864. sure no TSR or other program unnecessarily stole computing resources from the
  1865. benchmarks.
  1866.  
  1867.  
  1868. Description of benchmarks
  1869. -------------------------
  1870. PEAKFLOP is the kernel of a fractal computation. It consists mainly of a
  1871. tight loop written in assembly code and fine-tuned to give maximum
  1872. performance. The whole program fits nicely into even a very small CPU cache.
  1873. All variables are held in the CPU's and coprocessor's registers, so the only
  1874. memory access is for opcode fetches. The main loop contains three
  1875. multiplications and five additions/ subtractions; this ratio is fairly
  1876. typical for other floating-point intensive programs as well. Due to the
  1877. nature of this program, its MFLOPS rate is hardly to be exceeded by any
  1878. program that calculates anything useful; thus the name PEAKFLOP. You will
  1879. find the source code for PEAKFLOP in appendix B.
  1880.  
  1881. TRNSFORM multiplies an array of 8191 vectors with a 3D-transformation matrix
  1882. (a 4x4 matrix). Each vector consists of four double-precision values.
  1883. Multiplying vectors with a matrix is a typical operation in the manipulation
  1884. (e.g. rotation) of 3D objects which are made up from many vectors describing
  1885. the object. This benchmark stresses addition and multiplication as well as
  1886. memory access. For each vector, 16 multiplications and 12 additions are used,
  1887. and about 256 KB of data is accessed during the benchmark run.
  1888.  
  1889. For the IIT 3C87, a special version of TRNSFORM was written that makes use of
  1890. the special F4X4 instruction available on that coprocessor. F4X4 does a full
  1891. multiplication of a 4x4 matrix by a 4x1 vector in a single instruction.
  1892. TRNSFORM is implemented as an optimized assembler program linked with the
  1893. Turbo Pascal 6.0 library. The full source code can be found in appendix B.
  1894.  
  1895. LLL is short for Lawrence Livermore Loops [21], a set of kernels taken from
  1896. real floating-point extensive programs. Some of these loops are vectorizable,
  1897. but since we don't deal with vector processors here, this doesn't matter. For
  1898. this test, LLL was adapted from the FORTRAN original [20] to Turbo Pascal
  1899. 6.0. By variable overlaying (similar to FORTRAN's EQUIVALENCE statement),
  1900. memory allocation for data was reduced to 64 KB, so all data fits into a
  1901. single 64 KB segment. The older version of LLL is used here which contains 14
  1902. loops. There also exists a newer, more elaborate version consisting of 24
  1903. kernels. The kernels in LLL exercise only multiplication and addition. The
  1904. MFLOPS rate reported is the average of the MFLOPS rate of all 14 kernels.
  1905. All floating-point variables in the programs are of type DOUBLE.
  1906.  
  1907. Both LLL and Whetstone results (see below) are reported as returned by my
  1908. COMPTEST test program, in which they have been included as a measure of
  1909. coprocessor/FPU performance. COMPTEST has been compiled under Turbo Pascal
  1910. 6.0 with all 'optimizations' on and using my own run-time library, which
  1911. gives higher performance than the one included with TP 6.0. My library is
  1912. available as TPL60N18.ZIP from garbo.uwasa.fi and ftp sites that mirror this
  1913. site.
  1914.  
  1915. Linpack [5] is a well known floating-point benchmark that also heavily
  1916. exercises the memory system. Linpack operates on large matrices and takes up
  1917. about 570 KB in the version used for this test. This is about the largest
  1918. program size a pure DOS system can accommodate. Linpack was originally
  1919. designed to estimate performance of BLAS, a library of FORTRAN subroutines
  1920. that handles various vector and matrix operations. Note that vendors are
  1921. free to supply optimized (e.g., assembly language) versions of BLAS. Linpack
  1922. uses two routines from BLAS which are thought to be typical of the matrix
  1923. operations used by BLAS. Both routines only use addition/subtraction and
  1924. multiplication. The FORTRAN source code for Linpack can be obtained from
  1925. the automated mail server netlib@ornl.gov. Linpack was compiled using MS
  1926. FORTRAN 5.0 in the HUGE memory model (which can handle data structures
  1927. larger than 64 KB) and with compiler switches set for maximum optimization.
  1928. All floating-point variables in the program are of the DOUBLE type. Linpack
  1929. performs the same test repeatedly. The number reported is the maximum MFLOPS
  1930. rate returned by Linpack. Linpack MFLOPS ratings for a great number of
  1931. machines are contained in [6]. This PostScript document is also available
  1932. from netlib@ornl.gov.
  1933.  
  1934. Whetstone [2,3,4] is a synthetic benchmark based upon statistics collected
  1935. about the use of certain control and data structures in programs written in
  1936. high level languages. Based on these statistics, it tries to mirror a
  1937. 'typical' HLL program. Whetstone performance is expressed by how many
  1938. hypothetical 'whetstone' instructions are executed per second. It was
  1939. originally implemented in ALGOL. Unlike PEAKFLOP, LLL, and Linpack,
  1940. Whetstone not only uses addition and multiplication but exercises all basic
  1941. arithmetic operations as well as some transcendental functions. Whetstone
  1942. performance depends on the speed of the CPU as well as on the coprocessor,
  1943. while PEAKFLOP, LLL, and Linpack place a heavier burden on the coprocessor/FPU.
  1944.  
  1945. There exist both old and new versions of Whetstone. Note that results from
  1946. the two versions can differ by as much as 20% for the same test configuration.
  1947. For this test, the new version in Pascal from [3] was used. It was compiled
  1948. with Turbo Pascal 6.0 and my own library (see above) with all 'optimizations'
  1949. on. All computations are performed using the DOUBLE type.
  1950.  
  1951. SAVAGE tests the performance of transcendental function evaluation. It is
  1952. basically a small loop in which the sin, cos, arctan, ln, exp, and sqrt
  1953. functions are combined in a single expression. While sin, cos, arctan, and
  1954. sqrt can be evaluated directly with a single 387 coprocessor instruction
  1955. each, ln and exp need additional preprocessing for argument reduction and
  1956. result conversion. According to [14], the Savage benchmark was devised by
  1957. Bill Savage, and is distributed by: The Wohl Engine Company, Ltd., 8200 Shore
  1958. Front Parkway, Rockaway Beach, NY 11693, USA. Usually, Savage is programmed
  1959. to make 250,000 passes though the loop. Here only 10,000 loops are executed
  1960. for a total of 60,000 transcendental function evaluations. The result is
  1961. expressed in function evaluations per second. SAVAGE source code was taken
  1962. from [7] and compiled with Turbo Pascal 6.0 and my own run-time library
  1963. (see above).
  1964.  
  1965.  
  1966.  
  1967. Benchmark results using the Intel 386DX CPU and various coprocessors
  1968. --------------------------------------------------------------------
  1969.  
  1970. My benchmark results for 387 coprocessors, coprocessor emulators and the
  1971. Intel RapidCAD and Intel 486 CPUs, using the programs described above, on
  1972. an Intel 386DX system:
  1973.  
  1974.  
  1975.        33.3 MHz       PEAKFLOP TRNSFORM LLL     Linpack Whetstone Savage
  1976.                       MFLOPS   MFLOPS   MFLOPS  MFLOPS  kWhet/sec Func/sec
  1977.  
  1978.        Intel 386DX WITH:
  1979.        EM87 emulator  0.0070   0.0040   0.0050  0.0050         26      418 ##
  1980.        Franke387 emu. 0.0307   0.0246   0.0194  0.0179        137     3335 $$
  1981.        TP/MS-FORT emu 0.0263   0.0227   0.0167  0.0158        133     3160 %%
  1982.        Q387 emulator  0.0920   0.0664   0.0305  0.0304        251     4796 ((
  1983.        Intel 387DX    0.7647   0.6004   0.3283  0.2676       2046    43860
  1984.        ULSI 83C87     1.0097   0.6609   0.3239  0.2598       2089    47431
  1985.        IIT 3C87       0.8455   0.5957   0.3198  0.2646       2203    49020
  1986.        IIT 3C87,4X4   0.8455   1.4334   0.3198  0.2646       2203    49020 @@
  1987.        C&T 38700      0.9455   0.6907   0.3338  0.2700       2376    62565
  1988.        Cyrix 387+     0.9286   0.6806   0.3293  0.2669       2435    66890
  1989.        Cyrix EMC87    1.0400   0.6628   0.3352  0.2808       2540    71685 //
  1990.  
  1991.        Intel RapidCAD 1.8572   1.5798   0.6072  0.4533       3953    72464
  1992.        Intel 486DX    2.0800   1.7779   0.9387  0.6682       5143    82192
  1993.  
  1994.  
  1995.  
  1996.        40 MHz         PEAKFLOP TRNSFORM LLL     Linpack Whetstone Savage
  1997.                       MFLOPS   MFLOPS   MFLOPS  MFLOPS  kWhet/sec Func/sec
  1998.  
  1999.        Intel 386DX WITH:
  2000.        EM87 emulator  0.0084   0.0080   0.0060  0.0060         31      502 ##
  2001.        Franke387 emu. 0.0369   0.0295   0.0233  0.0215        164     4002 $$
  2002.        TP/MS-FORT emu 0.0316   0.0273   0.0200  0.0190        160     3794 %%
  2003.        Q387 emulator  0.1103   0.0798   0.0365  0.0364        301     5758 ((
  2004.        Intel 387DX    0.9204   0.7212   0.3932  0.3211       2428    52677
  2005.        ULSI 83C87     1.2093   0.7936   0.3890  0.3120       2528    56926
  2006.        IIT 3C87       1.0196   0.7145   0.3834  0.3179       2663    58766
  2007.        IIT 3C87,4x4   1.0196   1.7244   0.3834  0.3179       2663    58766 @@
  2008.        C&T 38700      1.0722   0.7908   0.4007  0.3222       2837    74906
  2009.        Cyrix 387+     1.1305   0.8162   0.3945  0.3208       2946    80322
  2010.        Cyrix EMC87    1.2381   0.7963   0.4025  0.3324       3061    86083 //
  2011.  
  2012.        Intel RapidCAD 2.2128   1.8931   0.7377  0.5432       4810    86957
  2013.        Intel 486DX    2.4762   2.1335   1.1110  0.8204       6195    98522
  2014.  
  2015.  
  2016.  
  2017. Benchmark results using the Cyrix 486DLC CPU and various coprocessors
  2018. ---------------------------------------------------------------------
  2019.  
  2020. The Cyrix 486DLC is the latest entry into the market of 386DX replacement
  2021. processors. It features an Intel 486SX-compatible instruction set, a 1 KB on-
  2022. chip cache, and a 16x16 bit hardware multiplier. The RISC-like execution unit
  2023. of the 486DLC executes many instructions in a single clock cycle. The
  2024. hardware multiplier multiplies 16-bit quantities in 3 clock cycles, as
  2025. compared to 12-25 cycles on a standard Intel 386DX. This is especially useful
  2026. in address calculations (code from non-optimizing compilers may contain many
  2027. MUL instructions for array accesses) and for software floating-point
  2028. arithmetic. The 1 KB cache helps the 486DLC to overcome some of the
  2029. limitations of the 386 bus interface, and although its hit rate averages only
  2030. about 65% under normal program conditions, a 5-15% overall performance
  2031. increase can usually be seen for both integer and floating-point-intensive
  2032. applications when it is enabled.
  2033.  
  2034. The 486DLC's internal cache is a unified data/instruction write-through type,
  2035. and can be configured as either a direct mapped or a 2-way set associative
  2036. cache. For compatibility reasons, the cache is disabled after a processor
  2037. reset and must be enabled with the help of a small routine provided by
  2038. Cyrix. Cyrix has also defined some additional cache control signals for some
  2039. of the 486DLC pins, intended to improve communication between the on-chip
  2040. cache and an external cache. Current 386 systems ignore these signals, since
  2041. they are not defined for the standard Intel 386DX. However, future systems
  2042. designed with the 486DLC in mind may take advantage of them for increased
  2043. performance.
  2044.  
  2045. In existing 386 systems, DMA transfers (e.g., by a SCSI controller or a
  2046. soundcard) may cause the 486DLC's entire on-chip cache to be flushed, since
  2047. no other means exist to enforce consistency between the cache contents and
  2048. main memory. This reduces the performance of the 486DLC in these cases. The
  2049. 486DLC on-chip cache does, however, allow specification of up to four non-
  2050. cacheable regions, which is particularly useful if your system has memory
  2051. mapped peripherals (e.g., a Weitek coprocessor).
  2052.  
  2053. Although I successfully ran my test programs on the Cyrix chip with all
  2054. coprocessors, not all of them work well with the 486DLC in all circumstances.
  2055. The IIT 3C87, the Cyrix 83D87 (chips manufactured prior to November 1991),
  2056. and the Cyrix EMC87 should not be used with the 486DLC, since they may cause
  2057. the computer to lock up if the FSAVE and FRSTOR instructions are used. (These
  2058. instructions are typically used in protected mode multiple task environments
  2059. to save and restore the coprocessor state for each task. Note that Microsoft
  2060. Windows also fits this description.) According to Cyrix, this problem occurs
  2061. only with first revision 486DLCs (sample chips) and is fixed on newer ones.
  2062. To be on the safe side, I recommend using the Cyrix 387+ with the 486DLC,
  2063. both for assured compatibility and for best performance. Note that 387+ is a
  2064. 'Europe only' name and that this chip is called 83D87 elsewhere, just like
  2065. the old version. You need to get a 83D87 produced after about October 1991
  2066. to guarantee that is works correctly with any 486DLC; the same caveat applies
  2067. to the Cyrix 486SLC and the Cyrix 83S87. If you already have a Cyrix
  2068. coprocessor, use my COMPTEST program to find out whether you have a 'new' or
  2069. 'old' coprocessor. COMPTEST is available as CTEST257.ZIP via anonymous ftp
  2070. from garbo.uwasa.fi (in the /systest directory) and other ftp servers that
  2071. mirror garbo.
  2072.  
  2073. The Cyrix 486DLC is currently the 386 'clone' with the highest integer
  2074. performance. With the internal cache enabled, integer performance of the
  2075. 486DLC can be up to 80% higher than that of an Intel 386DX at the same clock
  2076. frequency, with the average speed gain for most applications being about 35%.
  2077. Floating-point applications are typically accelerated by about 15%-30% when
  2078. using a Cyrix 486DLC (with its cache enabled) instead of the Intel 386DX.
  2079.  
  2080.  
  2081.        33.3 MHz       PEAKFLOP TRNSFORM LLL     Linpack Whetstone Savage
  2082.                       MFLOPS   MFLOPS   MFLOPS  MFLOPS  kWhet/sec Func/sec
  2083.        Cyrix 486DLC
  2084.        (cache off) WITH:
  2085.        EM87 emulator  0.0089   0.0082   0.0062  0.0063         31      472 ##
  2086.        Franke387 emu. 0.0402   0.0324   0.0258  0.0240        184     4807 $$
  2087.        TP/MS-FORT emu 0.0346   0.0288   0.0206  0.0212        173     4401 %%
  2088.        Q387 emulator  0.1214   0.0810   0.0368  0.0382        320     6020 ((
  2089.        Intel 387DX    0.8455   0.6552   0.3659  0.3033       2249    48780
  2090.        ULSI 83C87     1.1818   0.7543   0.3752  0.3026       2381    53476
  2091.        IIT 3C87       0.9541   0.6609   0.3653  0.3036       2476    55814
  2092.        IIT 3C87,4X4   0.9541   1.4988   0.3653  0.3036       2476    55814 @@
  2093.        C&T 38700      1.1183   0.7644   0.3796  0.3087       2703    73350
  2094.        Cyrix 387+     1.1305   0.7445   0.3727  0.3060       2731    81967
  2095.        Cyrix EMC87    1.2236   0.7593   0.3823  0.3144       2908    88889 //
  2096.  
  2097.        Intel RapidCAD 1.8572   1.5798   0.6072  0.4533       3953    72464
  2098.        Intel 486DX    2.0800   1.7779   0.9387  0.6682       5143    82192
  2099.  
  2100.  
  2101.  
  2102.        40.0 MHz       PEAKFLOP TRNSFORM LLL     Linpack Whetstone Savage
  2103.                       MFLOPS   MFLOPS   MFLOPS  MFLOPS  kWhet/sec Func/sec
  2104.        Cyrix 486DLC
  2105.        (cache off) WITH:
  2106.        EM87 emulator  0.0107   0.0098   0.0075  0.0075         37      567 ##
  2107.        Franke387 emu. 0.0488   0.0392   0.0311  0.0288        223     5808 $$
  2108.        TP/MS-FORT emu 0.0416   0.0345   0.0246  0.0253        208     5284 %%
  2109.        Q387 emulator  0.1463   0.0973   0.0442  0.0458        384     7237 ((
  2110.        Intel 387DX    1.0196   0.7880   0.4375  0.3644       2712    58479
  2111.        ULSI 83C87     1.4247   0.9064   0.4506  0.3630       2868    64171
  2112.        IIT 3C87       1.1556   0.7963   0.4399  0.3611       2988    66964
  2113.        IIT 3C87,4X4   1.1556   1.7916   0.4399  0.3611       2988    66964 @@
  2114.        C&T 38700      1.3333   0.9210   0.4548  0.3708       3254    88106
  2115.        Cyrix 387+     1.3507   0.8958   0.4477  0.3754       3297    98361
  2116.        Cyrix EMC87    1.4648   0.9136   0.4548  0.3773       3505   106572 //
  2117.  
  2118.        Intel RapidCAD 2.2128   1.8931   0.7377  0.5432       4810    86957
  2119.        Intel 486DX    2.4762   2.1335   1.1110  0.8204       6195    98522
  2120.  
  2121.  
  2122.  
  2123.        33.3 MHz       PEAKFLOP TRNSFORM LLL     Linpack Whetstone Savage
  2124.                       MFLOPS   MFLOPS   MFLOPS  MFLOPS  kWhet/sec Func/sec
  2125.        Cyrix 486DLC
  2126.        (cache on) WITH:
  2127.        EM87 emulator  0.0099   0.0089   0.0068  0.0069         35      550 ##
  2128.        Franke387 emu. 0.0462   0.0362   0.0288  0.0265        205     5445 $$
  2129.        TP/MS-FORT emu 0.0410   0.0330   0.0234  0.0241        198     5339 %%
  2130.        Q387 emulator  0.1344   0.0902   0.0389  0.0403        339     6241 ((
  2131.        Intel 387DX    0.8525   0.6552   0.3941  0.3279       2332    49834
  2132.        ULSI 83C87     1.2093   0.7543   0.4068  0.3270       2478    57197
  2133.        IIT 3C87       0.9720   0.6609   0.3959  0.3295       2579    57252
  2134.        IIT 3C87,4X4   0.9720   1.5087   0.3959  0.3295       2579    57252 @@
  2135.        C&T 38700      1.1305   0.7644   0.4126  0.3343       2839    75949
  2136.        Cyrix 387+     1.1429   0.7445   0.4023  0.3310       2866    85349
  2137.        Cyrix EMC87    1.2381   0.7593   0.4150  0.3412       3051    93897 //
  2138.  
  2139.        Intel RapidCAD 1.8572   1.5798   0.6072  0.4533       3953    72464
  2140.        Intel 486DX    2.0800   1.7779   0.9387  0.6682       5143    82192
  2141.  
  2142.  
  2143.  
  2144.        40.0 MHz       PEAKFLOP TRNSFORM LLL     Linpack Whetstone Savage
  2145.                       MFLOPS   MFLOPS   MFLOPS  MFLOPS  kWhet/sec Func/sec
  2146.        Cyrix 486DLC
  2147.        (cache on) WITH:
  2148.        EM87 emulator  0.0118   0.0107   0.0082  0.0082         42      659 ##
  2149.        Franke387 emu. 0.0565   0.0438   0.0350  0.0313        248     6585 $$
  2150.        TP/MS-FORT emu 0.0491   0.0395   0.0279  0.0296        238     6408 %%
  2151.        Q387 emulator  0.1610   0.1084   0.0470  0.0484        407     7509 ((
  2152.        Intel 387DX    1.0297   0.7880   0.4748  0.3937       2801    59821
  2153.        ULSI 83C87     1.4445   0.9028   0.4891  0.3926       2976    65789
  2154.        IIT 3C87       1.1686   0.7963   0.4734  0.3916       3096    68729
  2155.        IIT 3C87,4X4   1.1686   1.8057   0.4734  0.3916       3096    68729 @@
  2156.        C&T 38700      1.3685   0.9173   0.4958  0.4012       3401    91185
  2157.        Cyrix 387+     1.3867   0.8958   0.4887  0.3962       3448   102564
  2158.        Cyrix EMC87    1.4857   0.9100   0.4959  0.4091       3676   112360 //
  2159.  
  2160.        Intel RapidCAD 2.2128   1.8931   0.7377  0.5432       4810    86957
  2161.        Intel 486DX    2.4762   2.1335   1.1110  0.8204       6195    98522
  2162.  
  2163.  
  2164.  
  2165.  
  2166. Benchmark results using the C&T 38600DX CPU and various coprocessors
  2167. --------------------------------------------------------------------
  2168.  
  2169. The Chips&Technologies 38600DX CPU is marketed as a 100% compatible
  2170. replacement for the Intel 386DX CPU. Unlike AMD's Am386, which uses microcode
  2171. that is identical to the Intel 386DX's, the C&T 38600DX uses microcode
  2172. developed independently by C&T using "clean-room" techniques. C&T even
  2173. included the 386DX's "undocumented" LOADALL386 instruction into the
  2174. instruction set to provide full compatibility with the 386DX. In my tests,
  2175. however, I observed that the 38600DX has severe problems with the CPU-
  2176. coprocessor communication, which causes the floating-point performance to
  2177. drop below that of the Intel 386DX/Intel 387DX for most programs. This
  2178. problem exists with all available 387-compatible coprocessors (ULSI 83C87,
  2179. IIT 3C87, Cyrix EMC87, Cyrix 83D87, Cyrix 387+, C&T 38700, Intel 387DX). A
  2180. net.aquaintance also did tests with the 38600DX and arrived at similar
  2181. results. He contacted C&T and they said that they were aware of the problem.
  2182.  
  2183. Some instructions execute faster on the C&T 38600DX than on the 386DX, giving
  2184. an average speedup of 5-10% for integer applications. C&T also produces a
  2185. 38605DX CPU that includes a 512 byte instruction cache and provides a further
  2186. performance increase. However, the 38605DX needs a bigger socket (144-pin
  2187. PGA) and is therefore *not* pin-compatible with the 386DX. Tests using the
  2188. 38600DX were run at 33.3 MHz, as a 40 MHz version was not available as of 09-
  2189. 17-92 and running the 33 MHz chip version at 40 MHz locked up the machine
  2190. frequently. Unfortunately, tests using the Intel 387DX consistently locked up
  2191. in the TRNSFORM benchmark when run at 33.3 MHz. It ran fine at 20 MHz, and
  2192. the results were scaled to show expected performance at 33.3 MHz.
  2193.  
  2194.  
  2195.        33.3 MHz       PEAKFLOP TRNSFORM LLL     Linpack Whetstone Savage
  2196.                       MFLOPS   MFLOPS   MFLOPS  MFLOPS  kWhet/sec Func/sec
  2197.  
  2198.        C&T 38600DX WITH:
  2199.        Intel 387DX    0.7376   0.5620   0.3337  0.2636       2066    45489
  2200.        ULSI 83C87     0.5226   0.4690   0.3236  0.2654       2087    43228
  2201.        IIT 3C87       0.7879   0.5762   0.3397  0.2674       2263    51195
  2202.        IIT 3C87,4X4   0.7879   0.6181   0.3397  0.2674       2263    51195 @@
  2203.        C&T 38700      0.5977   0.5572   0.3463  0.2681       2338    63966
  2204.        Cyrix 387+     0.5896   0.5508   0.3438  0.2673       2375    66741
  2205.  
  2206.        Intel RapidCAD 1.8572   1.5798   0.6072  0.4533       3953    72464
  2207.        Intel 486      2.0800   1.7779   0.9387  0.6682       5143    82192
  2208.  
  2209.  
  2210.        For comparison:
  2211.  
  2212.                       PEAKFLOP TRNSFORM LLL     Linpack Whetstone Savage
  2213.                       MFLOPS   MFLOPS   MFLOPS  MFLOPS  kWhet/sec Func/sec
  2214.  
  2215.        i486DX2-66     4.1601   3.4227   1.6531  1.3010      10655   163934
  2216.        i486DX2-50     3.0589   2.6665   1.2537  0.9744       7962   123203
  2217.        i387, 20 MHz   0.2253   0.3271   0.1434  0.1171        952    21739 ++
  2218.        i387DX, 20 MHz 0.3567   0.4444   0.1484  0.1161       1034    24155 &&
  2219.        i80287, 5 MHz  0.0281   0.0310   0.0242  0.0222        150     3261 !!
  2220.        i8087,9.54 MHz 0.0636   0.0705   0.0321  0.0219        234     5782 **
  2221.  
  2222.  
  2223.  
  2224. Benchmark notes and footnotes
  2225. -----------------------------
  2226.  
  2227. Hardware configuration for test of 387 coprocessors with C&T 38600DX, Intel
  2228. 386DX, Cyrix 486DLC, and Intel RapidCAD CPUs:
  2229.  
  2230.      System A: Motherboard with Forex chip set, 128 KB CPU Cache, 8 MB RAM
  2231.  
  2232.  
  2233. Hardware configuration for test of 486 FPU (extra fan for 40 MHz operation):
  2234.  
  2235.      System B: Motherboard with SIS chip set, 256 KB CPU Cache, 8 MB RAM
  2236.  
  2237.  
  2238.  ## EM87 V1.2 by Ron Kimball is a public domain coprocessor emulator that
  2239.     loads as a TSR. It uses INT 7 traps emitted by 80286, 80386, or 486SX
  2240.     systems with no coprocessor upon encountering coprocessor instructions
  2241.     to catch coprocessor instructions and emulate them. Whetstone and Savage
  2242.     benchmarks for this test were compiled with the original TP 6.0 library,
  2243.     as EM87 chokes on the 387 specific FSIN and FCOS instructions used in my
  2244.     own library if a 387 is detected. Obviously EM87 identifies itself as a
  2245.     387, but it has no support for 387-specific instructions.
  2246.  
  2247.  $$ Franke387 is a commercial 387 emulator that is also available in a
  2248.     shareware version. For this test, shareware version V2.4 was used.
  2249.     Franke387 unlike many other emulators supports all 387 instructions.
  2250.     It is loaded as a device driver and uses INT 7 to trap coprocessor
  2251.     instructions.
  2252.  
  2253.  (( Q387 is an emulator that is distributed as a shareware program by
  2254.     Quickware of Austin, Texas. As the name implies, this emulator uses
  2255.     386 specific code and supports the full 387 instruction set. The
  2256.     program is about 330 kByte in size and loads completely into extended
  2257.     memory, using absolutely no DOS memory. It is loaded as a TSR and
  2258.     requires an EMM (expanded memory manager) to be present. The emulation
  2259.     uses the INT 7 mechanism. The version of Q387 used was 3.0a.
  2260.  
  2261.  %% These benchmarks were run using the built-in coprocessor emulators of
  2262.     the TP 6.0 (for Savage, LLL, Whetstone, TRNSFORM, PEAKFLOP) and the MS
  2263.     FORTRAN 5.0 (for Linpack) run-time libraries by forcing the libraries
  2264.     into not using a coprocessor by using the environment settings NO87=NC
  2265.     and 87=N.
  2266.  
  2267.  @@ The 3C87 specific F4X4 instruction was used in the vector transformation
  2268.     benchmark.
  2269.  
  2270.  // The EMC87 was used in the 387-compatible mode only. The faster memory-
  2271.     mapped mode was *not* used. Times should therefore be identical to the
  2272.     Cyrix 83D87.
  2273.  
  2274.  ++ Older motherboard with no chip set (discrete logic), no CPU cache, 16 MB
  2275.     RAM
  2276.  
  2277.  && System A, CPU cache disabled via extended set-up, turbo-switch set to
  2278.     half speed (that is, 20 MHz)
  2279.  
  2280.  !! 80386 @ 20 MHz / Intel 80287 @ 5 MHz, no CPU cache, 4 MB RAM due to the
  2281.     fast CPU used here, performance figures are somewhat higher than can be
  2282.     expected for a 80286/287 combination, except for the PEAKFLOP benchmark,
  2283.     which is basically coprocessor limited.
  2284.  
  2285.  ** 8086/8087 system with 640 KB RAM
  2286.  
  2287.  
  2288. Benchmark results for Weitek coprocessors
  2289. ------------------------------------------
  2290. Since neither a Weitek coprocessor nor a compiler that generates code for the
  2291. Weitek chips were available to me, performance data for the Weitek Abacus is
  2292. given here according to [31,32] and scaled to show performance of a 33 MHz
  2293. system. The benchmarks were compiled using highly-optimizing 32-bit
  2294. compilers.
  2295.  
  2296.                               Single Prec.     Double Prec.    Double Prec.
  2297.  
  2298.                               3167    4167     3167    4167      387    486
  2299.  
  2300.          Linpack MFLOPS        1.8     5.0      0.8     3.2      0.4    1.6
  2301.          Whetstone kWhet/sec  7470   22700     4900   14000     3290  12300
  2302.  
  2303. Note that for the Intel coprocessors, running programs in single vs. double-
  2304. precision doesn't provide much of an performance advantage since all internal
  2305. calculations are always done in extended precision. Using Weitek
  2306. coprocessors, however, performance nearly doubles in single-precision mode.
  2307. For double-precision calculations using only basic arithmetic, the Weitek
  2308. Abacus can at most provide performance at twice the level of the respective
  2309. Intel coprocessor (387/486) at the same clock speed.
  2310.  
  2311.  
  2312.          Comparison of floating-point performance [30,32]
  2313.  
  2314.                                       single-precision
  2315.  
  2316.                           Weitek 4167-33    Intel 486-33   Intel 486DX2-66
  2317.  
  2318.          Linpack MFLOPS            5.0           1.8             3.5
  2319.          Whetstones kWhet/sec    22700         12700           25500
  2320.  
  2321.  
  2322.                                       double-precision
  2323.  
  2324.                         Weitek 4167-33  Intel 486-33 Intel 486DX2-66
  2325.  
  2326.          LINPACK MFLOPS            3.5           1.6             3.1
  2327.          kWhetstones/sec         14000         12300           24700
  2328.  
  2329.  
  2330.  
  2331. =============================================================================
  2332. Clock-cycle timings for coprocessor instructions on various coprocessor chips
  2333. =============================================================================
  2334.  
  2335. Speed of various coprocessor instructions, measured in clock cycles, as
  2336. captured by my program 87TIMES. Error is +/- one clock cycle, except for the
  2337. Intel 80287. Times for the 80287 were determined on a system with a 20 MHz
  2338. 80386 and a 5 MHz Intel 80287. Therefore, times may differ from a genuine
  2339. 80286/287 system, especially for those instructions that access an operand in
  2340. memory. Since the times are stated as the number of coprocessor clock cycles
  2341. used, the faster 386 which can execute four clock cycles where the 80287
  2342. executes one clock cycle may decrease memory access times as seen by the
  2343. coprocessor.
  2344.  
  2345. The CPU used in testing the 387 coprocessors was an Intel 386DX. Note that
  2346. due to the improved coprocessor interface of the Cyrix 486DLC the execution
  2347. time of most coprocessor instructions drops by 2-3 clock cycles when used
  2348. with this CPU.
  2349.  
  2350.  
  2351.                   Intel  Intel  Cyrix Cyrix C&T   ULSI  IIT  Intel Intel
  2352.                   i486 RapidCAD 83D87 387+  38700 83C87 3C87 387DX 80387
  2353.  
  2354.              FLD1    4      3     14    14    14    18    24    23    26
  2355.              FLDZ    4      3     14    14    14    18    24    23    31
  2356.             FLDPI    7      8     14    15    14    18    24    38    45
  2357.            FLDLG2    7      8     14    14    14    18    24    33    45
  2358.            FLDL2T    7      8     14    14    14    19    24    38    45
  2359.            FLDL2E    7      8     14    14    14    19    24    38    45
  2360.            FLDLN2    7      8     14    14    14    19    24    38    45
  2361.         FLD ST(0)    4      4     14    14    14    14    24    20    21
  2362.         FST ST(1)    3      4     14    14    14    14    19    18    22
  2363.        FSTP ST(0)    4      4     14    14    14    15    19    19    22
  2364.        FSTP ST(1)    4      4     15    15    14    15    19    20    22
  2365.         FLD ST(1)    4      4     14    14    14    14    24    18    21
  2366.        FXCH ST(1)    4      4     14    20    14    19    24    24    27
  2367.       FILD [Word]   12     16     33    37    32    42    38    47    62
  2368.      FILD [DWord]    8     11     26    26    21    32    28    35    45
  2369.      FILD [QWord]    9     15     30    30    25    36    32    34    54
  2370.       FLD [DWord]    3      5     26    26    21    23    28    20    25
  2371.       FLD [QWord]    3      7     30    30    25    27    32    24    35
  2372.       FLD [TByte]    5     11     46    46    46    46    47    46    57
  2373.      FBLD [TByte]   83     90     66    86   106   146   197    71   278
  2374.       FIST [Word]   31     31     37    40    37    42    51    69    90
  2375.      FIST [DWord]   29     30     35    40    35    40    49    66    84
  2376.       FST [DWord]    7      7     35    37    32    40    33    37    40
  2377.       FST [QWord]    8      9     43    43    39    47    40    45    51
  2378.      FISTP [Word]   32     32     42    40    37    43    46    70    90
  2379.     FISTP [DWord]   31     31     40    40    35    41    50    67    87
  2380.     FISTP [QWord]   29     29     44    44    42    48    56    73    92
  2381.      FSTP [DWord]    8      8     38    36    32    41    35    38    43
  2382.      FSTP [QWord]    9      9     46    43    39    48    42    46    49
  2383.      FSTP [TByte]    8      8     50    45    49    50    48    53    58
  2384.     FBSTP [TByte]  170    172     98    98   114   129   218   144   533
  2385.             FINIT   17     31     15    16    15    15    16    16    25
  2386.             FCLEX    7     20     15    16    16    16    16    16    25
  2387.              FCHS    7      8     14    15    14    14    19    30    33
  2388.              FABS    5      5     14    15    14    14    19    30    33
  2389.              FXAM   12     13     14    15    14    14    19    39    43
  2390.              FTST    5      5     19    25    14    24    24    34    38
  2391.            FSTENV   67     82    125   125   124   132   124   159   165
  2392.            FLDENV   44     59    106   106   112   120   106   119   129
  2393.             FSAVE  181    169    355   355   374   361   376   469   511
  2394.            FRSTOR  130    203    358   358   385   372   371   420   456
  2395.       FSTSW [mem]    4      5     14    14    14    14    14    14    17
  2396.          FSTSW AX    3      4     12    12    11    11    11    11    14
  2397.       FSTCW [mem]    4      5     14    14    13    13    13    14    18
  2398.       FLDCW [mem]    4     11     26    26    31    32    27    32    36
  2399.     FADD ST,ST(0)    8      9     19    20    19    19    24    24    32
  2400.     FADD ST,ST(1)    9      9     19    20    19    18    24    20    32
  2401.     FADD ST(1),ST   10     10     19    20    19    18    24    24    37
  2402.    FADDP ST(1),ST   11     11     19    19    19    16    24    25    37
  2403.      FADD [DWord]    9     10     25    28    22    23    23    21    34
  2404.      FADD [QWord]    9     10     32    32    26    27    27    25    38
  2405.      FIADD [Word]   20     21     34    34    33    40    40    52    80
  2406.     FIADD [DWord]   20     21     27    28    27    30    30    37    61
  2407.     FSUB ST(1),ST   10     10     19    20    19    19    24    24    38
  2408.    FSUBR ST(1),ST    9     10     19    22    19    19    24    27    38
  2409.   FSUBRP ST(1),ST   10     10     19    19    22    20    24    25    38
  2410.      FSUB [DWord]   11     12     27    28    27    23    29    27    32
  2411.      FSUB [QWord]   11     12     32    32    31    27    33    26    44
  2412.      FISUB [Word]   21     21     34    34    34    40    40    52    80
  2413.     FISUB [DWord]   21     22     27    28    27    29    30    40    60
  2414.     FMUL ST,ST(1)   16     17     19    25    24    24    29    38    57
  2415.     FMUL ST(1),ST   16     17     19    24    24    24    29    40    62
  2416.    FMULP ST(1),ST   17     17     19    24    24    25    29    40    58
  2417.      FIMUL [Word]   22     23     40    40    37    46    46    52    80
  2418.     FIMUL [DWord]   22     23     27    28    27    36    35    45    68
  2419.      FMUL [DWord]   11     12     27    28    27    28    29    25    45
  2420.      FMUL [QWord]   14     15     32    32    31    32    33    37    61
  2421.     FDIV ST,ST(0)   73     74     26    40    59    54    54    89   100
  2422.     FDIV ST,ST(1)   73     74     36    45    59    54    54    77   100
  2423.     FDIV ST(1),ST   73     74     36    45    59    55    54    78   102
  2424.    FDIVR ST(1),ST   73     74     36    45    59    54    54    77   102
  2425.   FDIVRP ST(1),ST   73     74     36    44    59    55    54    76   106
  2426.      FIDIV [Word]   84     85     52    58    75    76    76   105   141
  2427.     FIDIV [DWord]   84     85     45    46    65    65    65   101   123
  2428.      FDIV [DWord]   73     74     45    46    63    56    59    77   101
  2429.      FDIV [QWord]   73     74     50    50    67    60    63    78   103
  2430.       FSQRT (0.0)   25     25     19    19    14    19    24    29    37
  2431.       FSQRT (1.0)   83     84     36    74    54    89    59   109   132
  2432.       FSQRT (L2T)   86     87     36    74    54    89    59   104   137
  2433.     FXTRACT (L2T)   17     17     19    19    19    28    79    53    72
  2434.     FSCALE (PI,5)   30     30     36    24    24    49    79    59    82
  2435.      FRNDINT (PI)   31     31     19    29    24    34    29    49    82
  2436.     FPREM (99,PI)   58     59     54    99    44    54    49    79    96
  2437.     FPREM1(99,PI)   90     91     54    99    44    59    54   104   121
  2438.              FCOM    5      6     15    20    19    25    19    29    32
  2439.             FCOMP    6      6     15    19    19    25    19    30    33
  2440.            FCOMPP    7      7     15    19    19    25    19    31    40
  2441.      FICOM [Word]   16     17     34    34    33    46    34    58    76
  2442.     FICOM [DWord]   16     16     21    28    21    35    23    45    57
  2443.      FCOM [DWord]    5      6     21    28    22    23    23    27    34
  2444.      FCOM [QWord]    5      8     27    32    25    27    27    31    39
  2445.        FSIN (0.0)   24     24     14    99    14    19    24    39    43
  2446.        FSIN (1.0)  310    313    114   164   144   494   219   509   596
  2447.         FSIN (PI)   88     89    118   189    64    64   214   134   152
  2448.        FSIN (LG2)  292    295     72    89   139   454   184   449   531
  2449.        FSIN (L2T)  299    302    123   179   164   469   214   454   536
  2450.        FCOS (0.0)   24     24     19   159    14    19    24    34    42
  2451.        FCOS (1.0)  302    305     84   104   139   489   214   459   547
  2452.         FCOS (PI)   88     89    154   254    64    64   224   199   232
  2453.        FCOS (LG2)  300    303    108   149   139   454   194   504   583
  2454.        FCOS (L2T)  307    310    159   239   164   469   224   509   601
  2455.     FSINCOS (0.0)   25     25     14    19    19    18    34    38    55
  2456.     FSINCOS (1.0)  353    356    124   174   254   493   419   538   636
  2457.      FSINCOS (PI)  105    106    162   263    79    68   424   228   277
  2458.     FSINCOS (LG2)  340    343    119   159   249   458   359   533   627
  2459.     FSINCOS (L2T)  347    350    168   248   274   473   424   538   646
  2460.       FPTAN (0.0)   25     25     14    19    19    18    29    38    46
  2461.       FPTAN (1.0)  266    269    119   149   184   538   309   323   396
  2462.        FPTAN (PI)  145    146    134   228   104   108   304   168   211
  2463.       FPTAN (LG2)  244    246     94   129   179   498   274   298   363
  2464.       FPTAN (L2T)  247    249    139   219   204   513   304   298   365
  2465.      FPATAN (0.0)   38     39     19    24    19    20    29    95    93
  2466.      FPATAN (1.0)  294    298    124   159    29   375   604   360   433
  2467.       FPATAN (PI)  304    308    139   188   279   360   424   375   472
  2468.      FPATAN (LG2)  290    293    128   154   269   365   379   375   448
  2469.      FPATAN (L2T)  304    308    144   189   274   359   424   375   468
  2470.       F2XM1 (0.0)   25     25     14    14    14    19    24    34    37
  2471.       F2XM1 (LN2)  209    211     89   119   169   394   284   299   348
  2472.       F2XM1 (LG2)  204    206     78   104   159   379   284   294   337
  2473.       FYL2X (1.0)   60     61     36    39    24    75    94   115   127
  2474.        FYL2X (PI)  294    297    108   163   249   450   359   395   504
  2475.       FYL2X (LG2)  311    314    108   159   249   460   339   410   518
  2476.       FYL2X (L2T)  293    296    108   164   249   439   359   390   501
  2477.     FYL2XP1 (LG2)  334    337     99   169   234   460   284   435   538
  2478.  
  2479.  
  2480.  
  2481.                                   80386 +  80386 +   80386 +  80386 +
  2482.                      Intel Intel  Q387     Franke387 TP 6.0   EM87
  2483.                      8087  80287  Emulator Emulator  Emulator Emulator
  2484.  
  2485.              FLD1    26     55      51      481       422      1626
  2486.              FLDZ    21     53      39      480       416      1646
  2487.             FLDPI    26     55      51      486       443      1626
  2488.            FLDLG2    26     56      51      486       423      1626
  2489.            FLDL2T    26     55      51      486       440      1626
  2490.            FLDL2E    26     53      52      486       423      1626
  2491.            FLDLN2    26     55      52      486       441      1626
  2492.         FLD ST(0)    31     55      57      493       362      1851
  2493.         FST ST(1)    26     54      61      489       355      1931
  2494.        FSTP ST(0)    26     54      46      507       358      2115
  2495.        FSTP ST(1)    21     55      66      507       356      2116
  2496.         FLD ST(1)    26     55      54      493       362      1852
  2497.        FXCH ST(1)    21     57      80      497       486      2187
  2498.       FILD [Word]    58     90     122      667       712      2259
  2499.      FILD [DWord]    64     74     121      608       812      2164
  2500.      FILD [QWord]    74     93     179      652       707      2971
  2501.       FLD [DWord]    49     44     106      633       473      2077
  2502.       FLD [QWord]    54     57     118      641       524      2336
  2503.       FLD [TByte]    59     45     102      607       492      2063
  2504.      FBLD [TByte]   309    310     736     2019      1512     17827
  2505.       FIST [Word]    79     72     143      854       766      2418
  2506.      FIST [DWord]    84     80     136      865       518      2325
  2507.       FST [DWord]    89     85     124      686       441      2200
  2508.       FST [QWord]    99     92     135      703       516      2481
  2509.      FISTP [Word]    79     80     154      864       794      2620
  2510.     FISTP [DWord]    79     81     144      879       541      2523
  2511.     FISTP [QWord]    88     75     184      904       916      3226
  2512.      FSTP [DWord]    89     75     133      713       467      2400
  2513.      FSTP [QWord]    93     72     142      732       538      2678
  2514.      FSTP [TByte]    49     21     111      685       467      2124
  2515.     FBSTP [TByte]   528    472    1124     3305      1555     27013
  2516.             FINIT    11     10    1079      742       641      1369
  2517.             FCLEX    11     10      48      440       323       912
  2518.              FCHS    21     54      45      460       354      1744
  2519.              FABS    21     54      43      456       349      1738
  2520.              FXAM    21     54      72      481       380      1551
  2521.              FTST    51     75      70      585       386      2721
  2522.            FSTENV    54     57     827      928       519      2104
  2523.            FLDENV    48     50     780     1125       450      1631
  2524.             FSAVE   214    244    3929     1949       976      2749
  2525.            FRSTOR   209    227    2901     2182       657      2225
  2526.       FSTSW [mem]    28     10      87      516       401      1189
  2527.          FSTSW AX   N/A     55      57      451       N/A       N/A
  2528.       FSTCW [mem]    28     10      74      506       359      1167
  2529.       FLDCW [mem]    19     47      91      524       437      1584
  2530.     FADD ST,ST(0)    86    128     136      643       706      2805
  2531.     FADD ST,ST(1)    85    116     146      707       808      3093
  2532.     FADD ST(1),ST    92    131     157      664       812      3146
  2533.    FADDP ST(1),ST    92    129     164      704       799      3143
  2534.      FADD [DWord]   105    122     221      874       969      3139
  2535.      FADD [QWord]   115    122     232      888      1021      3396
  2536.      FIADD [Word]   115    122     238      940      1211      3330
  2537.     FIADD [DWord]   125    122     239      882      1297      3215
  2538.     FSUB ST(1),ST    88    130     171      738       817      3156
  2539.    FSUBR ST(1),ST    96    132     181      740       868      3004
  2540.   FSUBRP ST(1),ST    99    132     193      733       805      3301
  2541.      FSUB [DWord]   119    122     230      918      1018      3127
  2542.      FSUB [QWord]   129    123     242      932      1070      3632
  2543.      FISUB [Word]   115    123     268      977      1081      3802
  2544.     FISUB [DWord]   125    125     289      940       980      4161
  2545.     FMUL ST,ST(1)   145    151     297      810      1368      3924
  2546.     FMUL ST(1),ST   145    151     296      817      1377      3962
  2547.    FMULP ST(1),ST   148    168     304      840      1365      4164
  2548.      FIMUL [Word]   132    151     384     1039      1517      4039
  2549.     FIMUL [DWord]   141    151     383      980      1643      3976
  2550.      FMUL [DWord]   125    123     345      948      1480      3445
  2551.      FMUL [QWord]   175    192     387      991      1602      4416
  2552.     FDIV ST,ST(0)   201    207     274      726      1536      9789
  2553.     FDIV ST,ST(1)   203    218     299      808      1658     10332
  2554.     FDIV ST(1),ST   207    214     299      825      1655     10342
  2555.    FDIVR ST(1),ST   201    206     302      819      1806     10213
  2556.   FDIVRP ST(1),ST   201    205     309      845      1803     10409
  2557.      FIDIV [Word]   237    227     390      980      1779     11225
  2558.     FIDIV [DWord]   246    227     411      944      1680     11572
  2559.      FDIV [DWord]   229    226     352      893      1722     10577
  2560.      FDIV [QWord]   236    227     391      993      1777     10829
  2561.       FSQRT (0.0)    21     57      60      512       382      1755
  2562.       FSQRT (1.0)   186    206     294     1106      2504     37836
  2563.       FSQRT (L2T)   186    207     295     1398      2467     37925
  2564.     FXTRACT (L2T)    51     56     155      726       571      3326
  2565.     FSCALE (PI,5)    41     56      95      817       443      3194
  2566.      FRNDINT (PI)    51     58     136      808       800      7092
  2567.     FPREM (99,PI)    81    131     322     1696       941      4098
  2568.     FPREM1(99,PI)   N/A    N/A     384     1625       N/A       N/A
  2569.              FCOM    56     75     155      582       483      2799
  2570.             FCOMP    61     92     160      616       485      2983
  2571.            FCOMPP    61     90     149      661       476      3198
  2572.      FICOM [Word]    79     77     231      808       861      3654
  2573.     FICOM [DWord]    89     77     231      750       964      3684
  2574.      FCOM [DWord]    74     75     214      741       625      3643
  2575.      FCOM [QWord]    74     76     205      754       667      3771
  2576.        FSIN (0.0)   N/A    N/A     137      639       N/A       N/A
  2577.        FSIN (1.0)   N/A    N/A     997     4640       N/A       N/A
  2578.         FSIN (PI)   N/A    N/A     322     2488       N/A       N/A
  2579.        FSIN (LG2)   N/A    N/A     978     3911       N/A       N/A
  2580.        FSIN (L2T)   N/A    N/A    1005     3767       N/A       N/A
  2581.        FCOS (0.0)   N/A    N/A     182      740       N/A       N/A
  2582.        FCOS (1.0)   N/A    N/A     988     4777       N/A       N/A
  2583.         FCOS (PI)   N/A    N/A     337     2557       N/A       N/A
  2584.        FCOS (LG2)   N/A    N/A     976     4176       N/A       N/A
  2585.        FCOS (L2T)   N/A    N/A    1001     3905       N/A       N/A
  2586.     FSINCOS (0.0)   N/A    N/A     225      714       N/A       N/A
  2587.     FSINCOS (1.0)   N/A    N/A    1841     6049       N/A       N/A
  2588.      FSINCOS (PI)   N/A    N/A    1167     4091       N/A       N/A
  2589.     FSINCOS (LG2)   N/A    N/A    1525     5640       N/A       N/A
  2590.     FSINCOS (L2T)   N/A    N/A    1552     5405       N/A       N/A
  2591.       FPTAN (0.0)    41     58      90      752      8381      2324
  2592.       FPTAN (1.0)   581    582    1182     6366     10817     29824
  2593.        FPTAN (PI)   606    587     292     4388     12410      2300
  2594.       FPTAN (LG2)   516    513     883     5939     12502     26770
  2595.       FPTAN (L2T)   576    586     954     5723     12483      2301
  2596.      FPATAN (0.0)    41     55     123      616      1208     10578
  2597.      FPATAN (1.0)   736    736     171     1426     13446     34208
  2598.       FPATAN (PI)   206    207   11115     2835     13305     46903
  2599.      FPATAN (LG2)   756    736   11077     2490     13319     41312
  2600.      FPATAN (L2T)   206    204   11117     2922     13364     50149
  2601.       F2XM1 (0.0)    16     56     102      563       723      1722
  2602.       F2XM1 (LN2)   631    624     905     4178     11070     33823
  2603.       F2XM1 (LG2)   611    585     890     4798     11116     32163
  2604.       FYL2X (1.0)    56     57     136      961      1214      4327
  2605.        FYL2X (PI)   946    961    1008     8987     12858     40148
  2606.       FYL2X (LG2)  1081   1038    1035     8933     12748     46821
  2607.       FYL2X (L2T)   926    886    1089     8982     12712     38986
  2608.     FYL2XP1 (LG2)  1026   1037    1154    10485     11867     44708
  2609.  
  2610.  
  2611. Clock-cycle timings for floating-point operations on Weitek coprocessors
  2612. ------------------------------------------------------------------------
  2613.  
  2614. The Weitek 3167 and 4167 coprocessors only implement the basic arithmetic
  2615. functions (add, subtract, multiply, divide, square root) in hardware;
  2616. transcendental functions are implemented by means of a software library
  2617. supplied by Weitek which uses the basic hardware instructions to approximate
  2618. the transcendental functions (using polynomial and rational approximations).
  2619. The clock cycle timings for the transcendental functions are average values,
  2620. since execution time can differ with the value of argument. The speed of
  2621. transcendental functions for the 4167 is estimated based on the numbers in
  2622. [31,33], from which this timing information has been extracted.
  2623.  
  2624.  
  2625.                   Single-precision         Double-precision
  2626.  
  2627.                   3167       4167          3167        4167
  2628.  
  2629.          ABS         3          2             3           2
  2630.          NEG         6          2             6           2
  2631.          ADD         6          2             6           2
  2632.          SUB         6          2             6           2
  2633.          SUBR        6          2             6           2
  2634.          MUL         6          2            10           3
  2635.          DIVR       38         17            66          31
  2636.          SQRT       60         17           118          31
  2637.          SIN       146        ~50           292        ~100
  2638.          COS       140        ~50           285        ~100
  2639.          TAN       188        ~60           340        ~110
  2640.          EXP       179        ~60           401        ~130
  2641.          LOG       171        ~60           365        ~120
  2642.          F->ASCII 1000        N/A          1700         N/A  //
  2643.          ASCII->F 1100        N/A          1800         N/A  //
  2644.  
  2645.          // rough average of the timings given for different numeric
  2646.             formats by Weitek. Note that these conversions routines
  2647.             do much more work than the FBLD and FBSTP instructions
  2648.             provided by the 80x87 coprocessors. FBLD and FBSTP are
  2649.             useful for conversion routines but quite a bit of additional
  2650.             code is need for this purpose.
  2651.  
  2652.  
  2653.  
  2654. =============================================================================
  2655. Accuracy of calculations performed by a coprocessor / The IEEETEST program
  2656. =============================================================================
  2657.  
  2658. Among the 80x87 coprocessors, the IEEE-754 Standard for Binary Floating-Point
  2659. Arithmetic [10,11] was first fully implemented by Intel's 387 coprocessor [17].
  2660. Among other things, this means that the add, subtract, multiply, divide,
  2661. remainder, and square root operations always deliver the 'exact' result. By
  2662. 'exact', the standard means that the coprocessor always delivers the machine
  2663. number closest to the real result, which may not always be representable
  2664. exactly in the available numeric format. The 80387 implements the single,
  2665. double, and double extended formats as specified in the IEEE standard, as
  2666. well as all functions required by it [17].
  2667.  
  2668. Note that earlier Intel coprocessors (the 8087 and the 80287) comply with a
  2669. draft version of the standard that differs from the final version. These
  2670. chips were developed before IEEE-754 was finally accepted in 1985. As with
  2671. the 80387, the basic arithmetic in the 8087 and the 80287 is 'exact' in the
  2672. sense that the computed result is always the machine number closest to the
  2673. real result. However, there are some differences regarding certain operands
  2674. like infinities, and some operations like the remainder are defined
  2675. differently than in the final version of the standard.
  2676.  
  2677. Some new instructions were introduced with the 80387, most notably the FSIN
  2678. and FCOS operations. The argument range for some transcendental function has
  2679. also been extended [17]. Note that the IEEE-754 standard says nothing about
  2680. the quality of the implementation of transcendental functions like sin, cos,
  2681. tan, arctan, log. Intel uses a modified CORDIC [18,19] technique to compute
  2682. the transcendental functions; Intel claims that maximum error in the 8087,
  2683. 80287, and 80387 for all transcendental functions does not exceed two bits in
  2684. the mantissa of the double extended format, which features 64 mantissa bits
  2685. for an overall accuracy of approximately 19 decimal places [22,23]. This
  2686. claim has been independently verified by a competing vendor [13]. This means
  2687. that at least 62 of the 64 mantissa bits returned as a result by one of the
  2688. transcendental function instructions are guaranteed to be correct.
  2689.  
  2690. The Weitek Abacus 3167 and 4167 coprocessors are 'mostly compatible' with
  2691. IEEE-754 [31,32,33]. They support the single-precision and double precision
  2692. numeric formats described in the standard, as well as the four rounding modes
  2693. required by it. However, due to Weitek's desire for extremely high-speed
  2694. operation, some of the finer points of IEEE-754 have not been implemented.
  2695. One of the most notable omissions is the missing support for denormal
  2696. numbers; denormals are always flushed to zero on Weitek chips.
  2697.  
  2698. The 387 clone manufacturers all claim 100% compatibility with Intel's 80387,
  2699. so one would reasonably expect the same accuracy from their chips as from
  2700. Intel's. For example, on the packaging of the IIT 3C87 it states that "...the
  2701. requirements of ANSI/IEEE standards are fulfilled and exceeded". Cyrix states
  2702. that their 83D87 complies fully with the IEEE-754 standard [12], and in fact
  2703. delivers with their coprocessors diagnostic software that includes the
  2704. program IEEETEST. This program is based on the IEEE test vectors from the PhD
  2705. thesis of Dr. Jerome T. Coonen [9]. A test using the IEEE test vectors has
  2706. also been included into the RUNDIAG program on the Intel RapidCAD diagnostic
  2707. disk. Rather than performing random tests, the test vectors check specific
  2708. cases that may be hard to get right. Each test vector specifies the operation
  2709. to be performed, the operands, precision and rounding mode to be used, and
  2710. the result (including flags set) to be expected according to the IEEE-754
  2711. standard.
  2712.  
  2713. I ran IEEETEST on all the available coprocessors/FPUs. The Intel 486, Intel
  2714. RapidCAD, Intel 387, Intel 387DX, Cyrix 83D87, and the Cyrix 387+ passed with
  2715. no errors. The ULSI 83C87 showed some minor flaws in the FCOM, FDIV, FMUL,
  2716. and FSCALE operations, getting flag errors in about 1% of the tested cases,
  2717. but no computational errors. However, for the IIT 3C87, the IEEETEST program
  2718. showed flag *and* some computational errors (that is, wrong results) for all
  2719. tested operations except FXTRACT and FCHS. The Intel 8087 and 80287 show
  2720. numerous errors, but this it not surprising, since they do not comply with
  2721. IEEE-754 but with an earlier draft of that standard, so they do some things
  2722. differently than required by the final version of the standard. In particular
  2723. the Intel 8087/80287 do not feature the IEEE-754 compliant comparison (FUCOM)
  2724. and remainder (FPREM1) instructions available on the Intel 80387 and newer
  2725. coprocessors, so IEEETEST uses the non-compliant FCOM and FPREM instructions
  2726. on these processors. Lack of an IEEE-754 compliant comparison instruction also
  2727. causes a good deal of the errors in the 'Next After' test.
  2728.  
  2729. Since IEEETEST is written in Turbo Pascal, it was recompiled with the $E+
  2730. switch to enable use of the coprocessor emulator built into the TP 6.0 library.
  2731. Using the emulator, IEEETEST aborted in the following tests with a division
  2732. by zero error: 'Comparison', 'Division', 'Next After'. These tests were removed
  2733. from the suite and the remaining tests were performed. The public domain
  2734. emulator EM87 could be tested, but hung in the last test which checks the
  2735. implementation of the remainder operation. This problem occurred because EM87
  2736. incorrectly identifies itself as an 387 type coprocessor when run on an 80386.
  2737. This causes the 387 specific FUCOM instruction to be used in the 'Comparison'
  2738. and 'Next After' tests and the FPREM1 instruction to be used in the 'Remainder'
  2739. test. Apparently EM87 is not able to emulate these instructions and therefore
  2740. crashes upon trying to execute them. It is interesting to note how the error
  2741. profile of EM87 matches exactly that of the Intel 80287, so it can be assumed
  2742. that EM87 is a very good emulation of the 80287 when run on the 80286. The
  2743. Franke387 V2.4 emulator hangs in the following test performed by IEEETEST:
  2744. 'Division', 'Multiplication', 'Scalb', 'Remainder'. The cause for these
  2745. failures is unknown.
  2746.  
  2747.  
  2748. This explanatory text is printed at the start of the IEEETEST program:
  2749.  
  2750.      JT Coonen's 1984 UC Berkeley Ph.D. thesis centers around his activities
  2751.      as a member of the floating-point working group that defined the IEEE
  2752.      754-1985 Standard for Binary Floating-Point Arithmetic. Appendix C of
  2753.      his thesis presents FPTEST, a Pascal program written by J Thomas and JT
  2754.      Coonen. IEEETEST is a port of FPTEST and runs on PCs whose math
  2755.      coprocessor accepts 80387-compatible floating-point instructions.
  2756.  
  2757.      IEEETEST reads test vectors from the file TESTVECS and compares the
  2758.      answer returned by the math coprocessor with the answer listed in the
  2759.      test vector. If these answers differ an 'F' is displayed, otherwise a
  2760.      '.'is displayed. Answers can differ due to two types of failures:
  2761.      numeric failures or flag failures. Numeric failures occur when the
  2762.      computed answer has the wrong value. Flag failures occur when the status
  2763.      (invalid operation, divide by zero, underflow, overflow, inexact) is
  2764.      incorrectly identified.
  2765.  
  2766.      TESTVECS is the concatenation of unmodified versions of all the test
  2767.      vectors distributed by UC Berkeley. The test data base is copyrighted by
  2768.      UC Berkeley (1985) and is being distributed with their permission.
  2769.      FPTEST and the test data base can be obtained by asking for 'IEEE-754
  2770.      Test Vector' from UC Berkeley, Electrical Engineering and Computer
  2771.      Science, Industrial Liaison Program, 479 Corey Hall, Berkeley, CA, 94720
  2772.      (415)643-6687.
  2773.  
  2774.      The initial version of this test data base for the proposed IEEE 754
  2775.      binary floating-point standard (draft 8.0) was developed for Zilog, Inc.
  2776.      and was donated to the floating-point working group for dissemination.
  2777.      Errors in or additions to the distributed data base should be reported
  2778.      to the agency of distribution, with copies to Zilog, Inc., 1315 Dell
  2779.      Avenue, Campbell, CA, 95008.
  2780.  
  2781.  
  2782. IEEETEST output for Intel 80387, Intel 387DX (manufactured 91/49), Intel 486,
  2783. C&T 38700 (manufactured 92/19), Cyrix 83D87, Cyrix 387+ (manufactured 92/11),
  2784. and Intel RapidCAD (manufactured 92/05):
  2785. ----------------------------------------------------------------------------
  2786.  
  2787.      IEEE-754 Test Vector  Precisions: S=Single D=Double E=Double Extended
  2788.                            |     TESTS     | numeric TYPE OF FAILURE flag
  2789.             Operation Code | Passed Failed |    S    D    E |   S    D    E
  2790.      ----------------------------------------------------------------------
  2791.        Absolute Value    A |    216      0 |    0    0    0 |   0    0    0
  2792.              Addition    + |   3528      0 |    0    0    0 |   0    0    0
  2793.            Comparison    C |   4320      0 |    0    0    0 |   0    0    0
  2794.             Copy Sign    @ |   1488      0 |    0    0    0 |   0    0    0
  2795.              Division    / |   4311      0 |    0    0    0 |   0    0    0
  2796.         Fraction Part    F |    624      0 |    0    0    0 |   0    0    0
  2797.                  Logb    L |    960      0 |    0    0    0 |   0    0    0
  2798.        Multiplication    * |   3978      0 |    0    0    0 |   0    0    0
  2799.              Negation    - |    216      0 |    0    0    0 |   0    0    0
  2800.            Next After    N |   2832      0 |    0    0    0 |   0    0    0
  2801.      Round to Integer    I |    558      0 |    0    0    0 |   0    0    0
  2802.                 Scalb    S |    948      0 |    0    0    0 |   0    0    0
  2803.           Square Root    V |    744      0 |    0    0    0 |   0    0    0
  2804.           Subtraction    - |   3528      0 |    0    0    0 |   0    0    0
  2805.             Remainder    % |   2984      0 |    0    0    0 |   0    0    0
  2806.                     Totals |  31235      0 |
  2807.  
  2808.  
  2809. IEEETEST output for ULSI 83C87 (manufactured 91/48):
  2810. ----------------------------------------------------
  2811.  
  2812.      IEEE-754 Test Vector  Precisions: S=Single D=Double E=Double Extended
  2813.                            |     TESTS     | numeric TYPE OF FAILURE flag
  2814.             Operation Code | Passed Failed |    S    D    E |   S    D    E
  2815.      ----------------------------------------------------------------------
  2816.        Absolute Value    A |    216      0 |    0    0    0 |   0    0    0
  2817.              Addition    + |   3528      0 |    0    0    0 |   0    0    0
  2818.            Comparison    C |   4312      8 |    0    0    0 |   0    0    8
  2819.             Copy Sign    @ |   1488      0 |    0    0    0 |   0    0    0
  2820.              Division    / |   4250     61 |    0    0    0 |  28   28    5
  2821.         Fraction Part    F |    624      0 |    0    0    0 |   0    0    0
  2822.                  Logb    L |    960      0 |    0    0    0 |   0    0    0
  2823.        Multiplication    * |   3936     42 |    0    0    0 |  19   19    4
  2824.              Negation    - |    216      0 |    0    0    0 |   0    0    0
  2825.            Next After    N |   2828      4 |    0    0    0 |   0    0    4
  2826.      Round to Integer    I |    558      0 |    0    0    0 |   0    0    0
  2827.                 Scalb    S |    930     18 |    0    0    0 |   6    6    6
  2828.           Square Root    V |    744      0 |    0    0    0 |   0    0    0
  2829.           Subtraction    - |   3528      0 |    0    0    0 |   0    0    0
  2830.             Remainder    % |   2984      0 |    0    0    0 |   0    0    0
  2831.                     Totals |  31102    133 |
  2832.  
  2833.  
  2834. IEEETEST output for ULSI 83S87 (manufactured 92/17)
  2835. (data kindly supplied by Bengt Ask, f89ba@efd.lth.se):
  2836. ------------------------------------------------------
  2837.  
  2838.      IEEE-754 Test Vector  Precisions: S=Single D=Double E=Double Extended
  2839.                            |     TESTS     | numeric TYPE OF FAILURE flag
  2840.             Operation Code | Passed Failed |    S    D    E |   S    D    E
  2841.      ----------------------------------------------------------------------
  2842.        Absolute Value    A |    216      0 |    0    0    0 |   0    0    0
  2843.              Addition    + |   3528      0 |    0    0    0 |   0    0    0
  2844.            Comparison    C |   4320      0 |    0    0    0 |   0    0    0
  2845.             Copy Sign    @ |   1488      0 |    0    0    0 |   0    0    0
  2846.              Division    / |   4296     15 |    0    0    0 |   5    5    5
  2847.         Fraction Part    F |    624      0 |    0    0    0 |   0    0    0
  2848.                  Logb    L |    960      0 |    0    0    0 |   0    0    0
  2849.        Multiplication    * |   3966     12 |    0    0    0 |   4    4    4
  2850.              Negation    - |    216      0 |    0    0    0 |   0    0    0
  2851.            Next After    N |   2828      4 |    0    0    0 |   0    0    4
  2852.      Round to Integer    I |    558      0 |    0    0    0 |   0    0    0
  2853.                 Scalb    S |    930     18 |    0    0    0 |   6    6    6
  2854.           Square Root    V |    744      0 |    0    0    0 |   0    0    0
  2855.           Subtraction    - |   3528      0 |    0    0    0 |   0    0    0
  2856.             Remainder    % |   2984      0 |    0    0    0 |   0    0    0
  2857.                     Totals |  31102     45 |
  2858.  
  2859.  
  2860. IEEETEST output for IIT 3C87 (manufactured 92/20):
  2861. --------------------------------------------------
  2862.  
  2863.      IEEE-754 Test Vector  Precisions: S=Single D=Double E=Double Extended
  2864.                            |     TESTS     | numeric TYPE OF FAILURE flag
  2865.             Operation Code | Passed Failed |    S    D    E |   S    D    E
  2866.      ----------------------------------------------------------------------
  2867.        Absolute Value    A |    200     16 |    0    0   16 |   0    0    0
  2868.              Addition    + |   3336    192 |    0    0  128 |   0    0   96
  2869.            Comparison    C |   4224     96 |    0    0   96 |   0    0    0
  2870.             Copy Sign    @ |   1488      0 |    0    0    0 |   0    0    0
  2871.              Division    / |   4159    152 |    0    0  124 |   0    0  116
  2872.         Fraction Part    F |    600     24 |    0    0   24 |   0    0   24
  2873.                  Logb    L |    960      0 |    0    0    0 |   0    0    0
  2874.        Multiplication    * |   3702    276 |    0    0  248 |   0    0  100
  2875.              Negation    - |    200     16 |    0    0   16 |   0    0    0
  2876.            Next After    N |   2248    584 |    0    0  584 |   0    0  168
  2877.      Round to Integer    I |    542     16 |    0    0    4 |   0    0   16
  2878.                 Scalb    S |    874     74 |    5    5   44 |   8    8   20
  2879.           Square Root    V |    688     56 |    0    0   56 |   0    0   56
  2880.           Subtraction    - |   3336    192 |    0    0  128 |   0    0   96
  2881.             Remainder    % |   2844    140 |    0    0  140 |   0    0  116
  2882.                     Totals |  29401   1834 |
  2883.  
  2884.  
  2885. IEEETEST output for Intel 80287 run with a 80386 CPU and Intel 8087:
  2886. --------------------------------------------------------------------
  2887.  
  2888.      IEEE-754 Test Vector  Precisions: S=Single D=Double E=Double Extended
  2889.                            |     TESTS     | numeric TYPE OF FAILURE flag
  2890.             Operation Code | Passed Failed |    S    D    E |   S    D    E
  2891.      ----------------------------------------------------------------------
  2892.        Absolute Value    A |    216      0 |    0    0    0 |   0    0    0
  2893.              Addition    + |   2886    642 |   16   16  112 | 174  174  174
  2894.            Comparison    C |   3612    708 |  136  136  136 | 228  228  228
  2895.             Copy Sign    @ |   1488      0 |    0    0    0 |   0    0    0
  2896.              Division    / |   3777    534 |   18   18   37 | 169  169  165
  2897.         Fraction Part    F |    552     72 |   24   24   24 |  24   24   24
  2898.                  Logb    L |    900     60 |   12   12   12 |  20   20   20
  2899.        Multiplication    * |   2944   1034 |  105  105  197 | 303  303  231
  2900.              Negation    - |    216      0 |    0    0    0 |   0    0    0
  2901.            Next After    N |    516   2316 |  168  168  332 | 764  764  764
  2902.      Round to Integer    I |    546     12 |    0    0    0 |   4    4    4
  2903.                 Scalb    S |    663    285 |   45   43   26 | 102   98   46
  2904.           Square Root    V |    720     24 |    4    4    4 |   8    8    8
  2905.           Subtraction    - |   2886    642 |   16   16  112 | 174  174  174
  2906.             Remainder    % |   1490   1494 |  432  432  288 | 342  342  230
  2907.                     Totals |  23412   7823 |
  2908.  
  2909.  
  2910. IEEETEST output for EM87 coprocessor emulator run on an Intel 386 CPU:
  2911. ----------------------------------------------------------------------
  2912.  
  2913.      IEEE-754 Test Vector  Precisions: S=Single D=Double E=Double Extended
  2914.                            |     TESTS     | numeric TYPE OF FAILURE flag
  2915.             Operation Code | Passed Failed |    S    D    E |   S    D    E
  2916.      ----------------------------------------------------------------------
  2917.        Absolute Value    A |    216      0 |    0    0    0 |   0    0    0
  2918.              Addition    + |   2886    642 |   16   16  112 | 174  174  174
  2919.            Comparison    C |      0   4320 | 1324 1324 1324 |1332 1332 1332
  2920.             Copy Sign    @ |   1488      0 |    0    0    0 |   0    0    0
  2921.              Division    / |   3777    534 |   18   18   37 | 169  169  165
  2922.         Fraction Part    F |    552     72 |   24   24   24 |  24   24   24
  2923.                  Logb    L |    900     60 |   12   12   12 |  20   20   20
  2924.        Multiplication    * |   2944   1034 |  105  105  197 | 303  303  231
  2925.              Negation    - |    216      0 |    0    0    0 |   0    0    0
  2926.            Next After    N |    348   2484 |  768  768  768 | 504  504  526
  2927.      Round to Integer    I |    546     12 |    0    0    0 |   4    4    4
  2928.                 Scalb    S |    663    285 |   45   43   26 | 102   98   46
  2929.           Square Root    V |    720     24 |    4    4    4 |   8    8    8
  2930.           Subtraction    - |   2886    642 |   16   16  112 | 174  174  174
  2931.             Remainder    % |   ######## not run since machine hangs #######
  2932.  
  2933.  
  2934. IEEETEST output for Franke387 coprocessor emulator run on an Intel 386:
  2935. -----------------------------------------------------------------------
  2936.  
  2937.      IEEE-754 Test Vector  Precisions: S=Single D=Double E=Double Extended
  2938.                            |     TESTS     | numeric TYPE OF FAILURE flag
  2939.             Operation Code | Passed Failed |    S    D    E |   S    D    E
  2940.      ----------------------------------------------------------------------
  2941.        Absolute Value    A |    152     64 |    0    0    8 |  24   24    8
  2942.              Addition    + |   1587   1941 |  178  178  722 | 508  508  616
  2943.            Comparison    C |   3696    624 |  208  208  208 |   4    4  108
  2944.             Copy Sign    @ |   1200    288 |    0    0    0 | 144  144    0
  2945.              Division    / |   ######## not run since machine hangs #######
  2946.         Fraction Part    F |    624      0 |    0    0    0 |   0    0    0
  2947.                  Logb    L |    908     52 |    0    0   16 |  16   16    4
  2948.        Multiplication    * |   ######## not run since machine hangs #######
  2949.              Negation    - |    152     64 |    0    0    8 |  24   24    8
  2950.            Next After    N |   1404   1420 |  404  404  596 |  80   80  172
  2951.      Round to Integer    I |    514     44 |    4    4   20 |   8    8   16
  2952.                 Scalb    S |   ######## not run since machine hangs #######
  2953.           Square Root    V |    569    175 |   14   31   54 |  28   48   72
  2954.           Subtraction    - |   1827   1701 |   98   98  642 | 452  452  576
  2955.             Remainder    % |   ######## not run since machine hangs #######
  2956.  
  2957.  
  2958. IEEETEST output for Q387 coprocessor emulator run on an Intel 386:
  2959. ------------------------------------------------------------------
  2960.  
  2961.      IEEE-754 Test Vector  Precisions: S=Single D=Double E=Double Extended
  2962.                            |     TESTS     | numeric TYPE OF FAILURE flag
  2963.             Operation Code | Passed Failed |    S    D    E |   S    D    E
  2964.      ----------------------------------------------------------------------
  2965.        Absolute Value    A |    104    112 |   42   38   16 |  24   24    0
  2966.              Addition    + |    911   2617 |  746  637  637 | 672  672  380
  2967.            Comparison    C |   3180   1140 |  380  380  380 | 108  108  108
  2968.             Copy Sign    @ |    696    792 |  320  280    0 | 288  288    0
  2969.              Division    / |    900   3411 |  673  574  814 | 977  977  821
  2970.         Fraction Part    F |    348    276 |  154   82   40 |  24   24   24
  2971.                  Logb    L |    656    304 |  136  100   36 |  24   24   12
  2972.        Multiplication    * |   1023   2955 |  759  663  857 | 670  670  442
  2973.              Negation    - |     86    130 |   44   38   32 |  24   24    0
  2974.            Next After    N |    464   2368 |  780  780  796 | 344  344  320
  2975.      Round to Integer    I |    273    285 |   95   74   52 |  72   72   68
  2976.                 Scalb    S |    254    694 |  217  192  137 | 176  168  136
  2977.           Square Root    V |    128    616 |  192  180  147 | 196  196  188
  2978.           Subtraction    - |    911   2617 |  746  637  637 | 672  672  372
  2979.             Remainder    % |    558   2426 |  903  859  664 | 508  508  220
  2980.                     Totals |  10492  20743 |
  2981.  
  2982.  
  2983. IEEETEST output for TP 6.0 coprocessor emulator:
  2984. ------------------------------------------------
  2985.  
  2986.      IEEE-754 Test Vector  Precisions: S=Single D=Double E=Double Extended
  2987.                            |     TESTS     | numeric TYPE OF FAILURE flag
  2988.             Operation Code | Passed Failed |    S    D    E |   S    D    E
  2989.      ----------------------------------------------------------------------
  2990.        Absolute Value    A |    168     48 |   16   16   16 |  16    8    0
  2991.              Addition    + |   1877   1651 |  294  290  336 | 496  456  416
  2992.            Comparison    C |   ## not run - program aborts with div-by-0 ##
  2993.             Copy Sign    @ |   1392     96 |   48   48    0 |  48    0    0
  2994.              Division    / |   ## not run - program aborts with div-by-0 ##
  2995.         Fraction Part    F |    588     36 |   12    0   24 |   0    0    0
  2996.                  Logb    L |    888     72 |   24   24   24 |  12   12   12
  2997.        Multiplication    * |   2148   1830 |  332  310  528 | 520  360  352
  2998.              Negation    - |    160     48 |   16   16   16 |  16    8    0
  2999.            Next After    N |   ## not run - program aborts with div-by-0 ##
  3000.      Round to Integer    I |    318    240 |    0    0    4 |  80   80   80
  3001.                 Scalb    S |    564    384 |  108  100   76 | 112   88   56
  3002.           Square Root    V |    180    564 |  143  157  169 |  72   72  128
  3003.           Subtraction    - |   1877   1651 |  294  290  336 | 496  456  416
  3004.             Remainder    % |   1072   1912 |  652  672  524 | 336  288  216
  3005.  
  3006.  
  3007.  
  3008.  
  3009. Additional accuracy and compatibility tests
  3010. -------------------------------------------
  3011.  
  3012. To complement the checks done by IEEETEST, I also wrote the short programs
  3013. DENORMTS, RCTRL, PCTRL in Turbo Pascal 6.0 that test the following
  3014. coprocessor functions:
  3015.  
  3016.     1. support for denormals in all precisions (single, double, extended)
  3017.     2. support for the four IEEE rounding modes (up, down, nearest, chop)
  3018.     3. support for precision control
  3019.  
  3020. Note that passing all tests is required for IEEE conformance, as well as 100%
  3021. compatibility with Intel's coprocessors. Precision control forces the results
  3022. of the FADD, FSUB, FMUL, FDIV, and FSQRT instruction to be rounded to the
  3023. specified precision (single, double, double extended). This feature is
  3024. provided to obtain compatibility with certain programming languages [17]. By
  3025. specifying lower precision, one effectively nullifies the advantages of
  3026. extended precision intermediate results.
  3027.  
  3028. The IEEE-754 standard for floating-point arithmetic demands that processors
  3029. and floating-point packages that can not store the result of operations
  3030. *directly* to single and double precision location must provide precision
  3031. control. The programs that test precision control and rounding control are
  3032. designed to return a different result for each of the modes for the same
  3033. sequence of operation.
  3034.  
  3035. The source code of the programs can be found in appendix A. The Intel 8087
  3036. and 80287 were not tested with DENORMTS since Turbo Pascal does not support
  3037. extended precision denormals on 8087/80287 processors, so the denormal test
  3038. fails anyway. (The 8087 and 287 pass the RCTRL and PCTRL tests without error,
  3039. however).
  3040.  
  3041.  
  3042. Test Results for the Intel 387, Intel 387DX, Intel 486, Intel RapidCAD,
  3043. Cyrix 83D87, Cyrix 387+, C&T 38700, and the EM87 emulator (on an 80386 system):
  3044. -------------------------------------------------------------------------------
  3045.  
  3046.          Precision Control           SINGLE   1.13311278820037842E+0000
  3047.                                      DOUBLE   1.23456789006442125E+0000
  3048.                                      EXTENDED 1.23456789012337585E+0000
  3049.  
  3050.          Rounding Control            NEAREST -1.23427629010100635E+0100
  3051.                                      DOWN    -1.23427623555772409E+0100
  3052.                                      UP      -1.23457760966801097E+0100
  3053.                                      CHOP    -1.23397493540770643E+0100
  3054.  
  3055.          Denormal support
  3056.  
  3057.          SINGLE denormals supported
  3058.          SINGLE denormal prints as:    4.60943116855005E-0041
  3059.          Denormal should be printed as 4.60943...E-0041
  3060.  
  3061.          DOUBLE denormals supported
  3062.          DOUBLE denormal prints as:    8.75000000000016E-0311
  3063.          Denormal should be printed as 8.75...E-0311
  3064.  
  3065.          EXTENDED denormals supported
  3066.          EXTENDED denormal prints as:  1.31640625000000E-4934
  3067.          Denormal should be printed as 1.3164...E-4934
  3068.  
  3069.  
  3070. Results for the ULSI 83C87:
  3071. ---------------------------
  3072.  
  3073.          Precision Control           SINGLE   1.23456789012337585E+0000
  3074.                                      DOUBLE   1.23456789012337585E+0000
  3075.                                      EXTENDED 1.23456789012337585E+0000
  3076.  
  3077.          Rounding Control            NEAREST -1.23427629010100635E+0100
  3078.                                      DOWN    -1.23427623555772409E+0100
  3079.                                      UP      -1.23457760966801097E+0100
  3080.                                      CHOP    -1.23397493540770643E+0100
  3081.  
  3082.          Denormal support
  3083.  
  3084.          SINGLE denormals supported
  3085.          SINGLE denormal prints as:    4.60943116855005E-0041
  3086.          Denormal should be printed as 4.60943...E-0041
  3087.  
  3088.          DOUBLE denormals supported
  3089.          DOUBLE denormal prints as:    8.75000000000016E-0311
  3090.          Denormal should be printed as 8.75...E-0311
  3091.  
  3092.          EXTENDED denormals supported
  3093.          EXTENDED denormal prints as:  1.31640625000000E-4934
  3094.          Denormal should be printed as 1.3164...E-4934
  3095.  
  3096.  
  3097. Results for the IIT 3C87:
  3098. -------------------------
  3099.  
  3100.          Precision Control           SINGLE   1.13311278820037842E+0000
  3101.                                      DOUBLE   1.23456789006442125E+0000
  3102.                                      EXTENDED 1.23456789012337585E+0000
  3103.  
  3104.          Rounding Control            NEAREST -1.23427629010100635E+0100
  3105.                                      DOWN    -1.23427623555772409E+0100
  3106.                                      UP      -1.23457760966801097E+0100
  3107.                                      CHOP    -1.23397493540770643E+0100
  3108.  
  3109.          Denormal support
  3110.  
  3111.          SINGLE denormals supported
  3112.          SINGLE denormal prints as:    4.60943116855005E-0041
  3113.          Denormal should be printed as 4.60943...E-0041
  3114.  
  3115.          DOUBLE denormals supported
  3116.          DOUBLE denormal prints as:    8.75000000000016E-0311
  3117.          Denormal should be printed as 8.75...E-0311
  3118.  
  3119.          EXTENDED denormals not supported
  3120.  
  3121.  
  3122. Results for the Turbo Pascal 6.0 coprocessor emulator:
  3123. ------------------------------------------------------
  3124.  
  3125.          Precision Control           SINGLE   1.23456789012351396E+0000
  3126.                                      DOUBLE   1.23456789012351396E+0000
  3127.                                      EXTENDED 1.23456789012351396E+0000
  3128.  
  3129.          Rounding Control            NEAREST -1.23457766383395931E+0100
  3130.                                      DOWN    -1.23457766383395931E+0100
  3131.                                      UP      -1.23457766383395931E+0100
  3132.                                      CHOP    -1.23457766383395931E+0100
  3133.  
  3134.          Denormal support
  3135.  
  3136.          SINGLE denormals not supported
  3137.          DOUBLE denormals not supported
  3138.          EXTENDED denormals not supported
  3139.  
  3140.  
  3141. Results for the Q387 coprocessor emulator:
  3142. ------------------------------------------
  3143.  
  3144.          Precision Control           SINGLE   1.23456789012337614E+0000
  3145.                                      DOUBLE   1.23456789012337614E+0000
  3146.                                      EXTENDED 1.23456789012337614E+0000
  3147.  
  3148.          Rounding Control            NEAREST -1.23427621117212139E+0100
  3149.                                      DOWN    -1.23427621117212139E+0100
  3150.                                      UP      -1.23427621117212139E+0100
  3151.                                      CHOP    -1.23427621117212139E+0100
  3152.  
  3153.          Denormal support
  3154.  
  3155.          SINGLE denormals not supported
  3156.          DOUBLE denormals not supported
  3157.          EXTENDED denormals not supported
  3158.  
  3159.  
  3160. The test results show that the IIT 3C87 does not conform to the IEEE-754
  3161. floating-point standard in that it does not support denormals in double
  3162. extended precision. The ULSI 83C87 does not conform to that standard in that
  3163. it does not support precision control, but uses double extended precision for
  3164. all operations. The TP 6.0 emulator supports neither precision control,
  3165. rounding control nor support for any denormals, as does the Q387 emulator.
  3166. In addition, their basic arithmetic operations do not seem to conform to
  3167. the IEEE standard as the results of the test programs differ from that of
  3168. any result computed by a coprocessor for any mode.
  3169.  
  3170.  
  3171.  
  3172. ================================================
  3173. Accuracy of transcendental function calculations
  3174. ================================================
  3175.  
  3176. With regard to the accuracy of transcendental functions, Cyrix claims that
  3177. the relative error of the transcendental functions on its 83D87 coprocessor
  3178. never exceeds 0.5 ULP of the double extended format [13] (ULP = Unit in the
  3179. Last Place, numeric weight of the least significant mantissa bit). This means
  3180. that the maximum relative error is below 2**-64, while Intel's published
  3181. error limit for the 80387 is 2**-62. While Intel uses a modified CORDIC
  3182. algorithm [18,19] to compute the transcendental functions, Cyrix uses
  3183. rational approximations that utilize their chip's very fast array multiplier.
  3184. (For an explanation why this approach is superior to CORDIC with today's
  3185. technology, see [61].) Also, Cyrix uses an internal 75 bit data path for the
  3186. mantissa [15], so intermediate computations in the generation of
  3187. transcendental function values will enjoy some additional accuracy over the
  3188. 64 bits provided by the double extended format. Using 75 mantissa bits also
  3189. provides an advantage over other coprocessors like the Intel 387DX and ULSI
  3190. 83C87 which use only a 68 bit mantissa data path [58,59].
  3191.  
  3192. Note that a maximum relative error of 0.5 ULP for the Cyrix coprocessor does
  3193. not mean that it returns the 'exact' result (machine number closest to
  3194. infinitely precise result) all the time. Consider the case where the
  3195. infinitely precise result of a transcendental function falls nearly halfway
  3196. between two machine numbers. A relative error of 0.5 ULP can cause the result
  3197. to be either of the numbers after rounding, depending on the direction of the
  3198. error. But the 83D87 should deliver results that never differ from the
  3199. 'exact' result by more than one ULP. Also note that the claim of relative
  3200. error being below 0.5 ULPs is slightly exaggerated; 0.6 ULPs would be a more
  3201. realistic error limit. Imagine that the infinitely precise result for some
  3202. argument to a transcendental was xxx..xxx1001... (where the xxx...xxx
  3203. represent the first 64 bits of the result), but that the coprocessor computes
  3204. the result as xxx..xxx0111 and then round this down to xxx..xxx0000. Then the
  3205. relative error is (1001b-0b)/1000b = 0.5625 ULPs.
  3206.  
  3207. I tested some of the transcendental functions of the Cyrix 387+ and found the
  3208. relative error to be always below 0.6 ULPs. Cyrix also claims that its
  3209. transcendental functions satisfy the monotonicity criterion [13], a claim not
  3210. made by any of the competitors, which does not mean that the transcendental
  3211. functions on the other 387-compatibles may not be monotonic, too.
  3212. Monotonicity means that for all x1 > x2, it always follows that f(x1) >=
  3213. f(x2) for an increasing function like sin on [0..pi/4]. Likewise, for a
  3214. decreasing function like cos on [0..pi/4], for all x1 > x2, it follows that
  3215. f(x1) <= f(x2).
  3216.  
  3217. As previously noted, the Weitek Abacus 3167 and 4167 coprocessors implement
  3218. only the basic arithmetic operations (add, subtract, negate, multiply,
  3219. divide, square root) in hardware. Transcendental functions are performed via
  3220. a software library provided by Weitek. For these library functions Weitek
  3221. claims a maximum relative error of 5 ULPs [31,33]. This means that the last
  3222. three bits in the mantissa of a double-precision result can be wrong. Note
  3223. that the Intel 387 and compatible math coprocessors generate the
  3224. transcendental functions with a small relative error with regard to the
  3225. *extended double precision* format. Thus, when rounded to double-precision,
  3226. their function values are nearly always 'exact'. The problem of 'double
  3227. rounding' prevents them to be 'exact' in 100% of all cases. 387 type
  3228. coprocessors in general have superior accuracy when compared with Weitek's
  3229. coprocesssors.
  3230.  
  3231. The test diskette distributed with early versions of the Cyrix 83D87
  3232. contained a program (TRANCK) that checks the accuracy of the transcendental
  3233. functions in the coprocessor against a more precise software arithmetic [16].
  3234. I used this program to compare the accuracy of the transcendental functions
  3235. on those 287/387/486 coprocessors/FPUs available to me. As TRANCK will not
  3236. accept negative numbers as interval limits, I tested each function on an
  3237. interval along the positive x-axis. The functions tested were F2XM1 (2**x-1),
  3238. FSIN (sine), FCOS (cosine), FPTAN (tangent), FPATAN (arctangent), FYL2X (y *
  3239. log2 (x)), and FYL2XP1 (y * log2 (x+1)). These are all the transcendental
  3240. functions implemented on the 80387. Note that the square root (FSQRT) is
  3241. *not* a transcendental function. For each function, 100,000 arguments were
  3242. evaluated, with the arguments uniformly distributed within the interval
  3243. tested.
  3244.  
  3245. The EM87 emulator could not be checked with TRANCK, since the multiple
  3246. precision package in TRANCK would always return with an error message
  3247. immediately. However, the Franke387 emulator could be tested.
  3248.  
  3249.  
  3250. In the test results below, the following statistics are detailed:
  3251.  
  3252.        %wrong      is the percentage of results that differ from the 'exact'
  3253.                    result (infinitely precise result rounded to 64 bits)
  3254.        ULP_hi      is the number of results where the returned result was
  3255.                    greater than the 'exact' (correctly rounded) result by
  3256.                    one ULP (the numeric weight of the last mantissa bit,
  3257.                    2**-63 to 2**-64 depending of the size of the number).
  3258.        ULPs_hi     is the number of results where the returned result was
  3259.                    greater than the 'exact' result by two or more ULPs.
  3260.        ULP_lo      is the number of results where the returned result was
  3261.                    smaller than the 'exact' (correctly rounded) result by
  3262.                    one ULP (the numeric weight of the last mantissa bit,
  3263.                    2**-63 to 2**-64 depending of the size of the number).
  3264.        ULPs_lo     is the number of results where the returned result was
  3265.                    smaller than the 'exact' result by two or more ULPs.
  3266.        max ULP err is the maximum deviation of a returned result from the
  3267.                    'exact' answer expressed in ULPs.
  3268.  
  3269. Test results for accuracy of transcendental functions for double extended
  3270. precision as returned by the program TRANCK. 100,000 trials per function:
  3271.  
  3272.          Franke387 V2.4 emulator
  3273.                                                                     max
  3274.          funct. interval   %wrong ULP_hi ULPs_hi ULP_lo ULPs_lo ULP err
  3275.  
  3276.          SIN    0,pi/4      39.042  25301     708  13029       4       2
  3277.          COS    0,pi/4      75.714  49827   25887      0       0       3
  3278.          TAN    0,pi/4      76.976  14230   10029  24323   28394       9
  3279.          ATAN   0,1         55.826  26028    1529  24044    4225       4
  3280.          2XM1   0,0.5       96.717      0       0  47910   48807       5
  3281.          YL2XP1 0,sqrt(2)-1 93.007    578       9  27416   65004       8
  3282.          YL2X   0.1,10      62.252  16817    4712  37082    3641    2953
  3283.  
  3284.  
  3285.          Microsoft's coprocessor emulator
  3286.          (part of MS-C and MS-Fortran libraries)
  3287.                                                                      max
  3288.          funct. interval    %wrong ULP_hi ULPs_hi ULP_lo ULPs_lo ULP err
  3289.  
  3290.          SIN    0,pi/4         N/A    N/A     N/A    N/A     N/A     N/A
  3291.          COS    0,pi/4         N/A    N/A     N/A    N/A     N/A     N/A
  3292.          TAN    0,pi/4      40.828  27764    1520  11445      99       2
  3293.          ATAN   0,1         32.307  18893     485  12530     299       2
  3294.          2XM1   0,0.5       52.163   8585     189  37745    5644       3
  3295.          YL2XP1 0,sqrt(2)-1 88.801   4714     916  14239   68932      11
  3296.          YL2X   0.1,10      36.598  13813    3272  13866    5647      11
  3297.  
  3298.  
  3299.          INTEL 8087, 80287
  3300.                                                                      max
  3301.          funct. interval    %wrong ULP_hi ULPs_hi ULP_lo ULPs_lo ULP err
  3302.  
  3303.          SIN    0,pi/4         N/A    N/A     N/A    N/A     N/A     N/A
  3304.          COS    0,pi/4         N/A    N/A     N/A    N/A     N/A     N/A
  3305.          TAN    0,pi/4      37.001  18756     524  17405     316       2
  3306.          ATAN   0,1          9.666   6065       0   3601       0       1
  3307.          2XM1   0,0.5       19.920      0       0  19920       0       1
  3308.          YL2XP1 0,sqrt(2)-1  7.780    868       0   6912       0       1
  3309.          YL2X   0.1,10       1.287    723       0    564       0       1
  3310.  
  3311.  
  3312.          INTEL 80387
  3313.                                                                      max
  3314.          funct. interval    %wrong ULP_hi ULPs_hi ULP_lo ULPs_lo ULP err
  3315.  
  3316.          SIN    0,pi/4      28.872   2467       0  26392      13       2
  3317.          COS    0,pi/4      27.213  27169      35      9       0       2
  3318.          TAN    0,pi/4      10.532    441       0  10091       0       1
  3319.          ATAN   0,1          7.088   2386       0   4691       1       2
  3320.          2XM1   0,0.5       32.024      0       0  32024       0       1
  3321.          YL2XP1 0,sqrt(2)-1 22.611   3461       0  19150       0       1
  3322.          YL2X   0.1,10      13.020   6508       0   6512       0       1
  3323.  
  3324.  
  3325.          INTEL 387DX
  3326.                                                                      max
  3327.          funct. interval    %wrong ULP_hi ULPs_hi ULP_lo ULPs_lo ULP err
  3328.  
  3329.          SIN    0,pi/4      28.873   2467       0  26393      13       2
  3330.          COS    0,pi/4      27.121  27090      22      9       0       2
  3331.          TAN    0,pi/4      10.711    457       0  10254       0       1
  3332.          ATAN   0,1          7.088   2386       0   4691       1       2
  3333.          2XM1   0,0.5       32.024      0       0  32024       0       1
  3334.          YL2XP1 0,sqrt(2)-1 22.611   3461       0  19150       0       1
  3335.          YL2X   0.1,10      13.020   6508       0   6512       0       1
  3336.  
  3337.  
  3338.          ULSI 83C87
  3339.                                                                      max
  3340.          funct. interval    %wrong ULP_hi ULPs_hi ULP_lo ULPs_lo ULP err
  3341.  
  3342.          SIN    0,pi/4      35.530   4989       6  30238     297       2
  3343.          COS    0,pi/4      43.989  11193     675  31393     728       2
  3344.          TAN    0,pi/4      48.539  18880    1015  26349    2295       3
  3345.          ATAN   0,1         20.858     62       0  20796       0       1
  3346.          2XM1   0,0.5       21.257      4       0  21253       0       1
  3347.          YL2XP1 0,sqrt(2)-1 27.893   9446       0  18213     234       2
  3348.          YL2X   0.1,10      13.603   9816       0   3787       0       1
  3349.  
  3350.  
  3351.          IIT 3C87
  3352.                                                                      max
  3353.          funct. interval    %wrong ULP_hi ULPs_hi ULP_lo ULPs_lo ULP err
  3354.  
  3355.          SIN    0,pi/4      18.650  11171      0    7479       0       1
  3356.          COS    0,pi/4       7.700   3024      0    4676       0       1
  3357.          TAN    0,pi/4      20.973   9681      0   11291       1       2
  3358.          ATAN   0,1         19.280  13186      0    6094       0       1
  3359.          2XM1   0,0.5       25.660  17570      0    8090       0       1
  3360.          YL2XP1 0,sqrt(2)-1 45.830  23503   1896   19654     777       3
  3361.          YL2X   0.1,10      10.888   5638    357    4845      48       3
  3362.  
  3363.  
  3364.          C&T 38700DX
  3365.                                                                      max
  3366.          funct. interval    %wrong ULP_hi ULPs_hi ULP_lo ULPs_lo ULP err
  3367.  
  3368.          SIN    0,pi/4       1.821   1272      0     549       0       1
  3369.          COS    0,pi/4      23.358  12458      0   10901       0       1
  3370.          TAN    0,pi/4      17.178  10725      0    6453       0       1
  3371.          ATAN   0,1          9.359   7082      0    2277       0       1
  3372.          2XM1   0,0.5       15.188   3039      0   12149       0       1
  3373.          YL2XP1 0,sqrt(2)-1 19.497  12109      0    7388       0       1
  3374.          YL2X   0.1,10      46.868    261      0   46607       0       1
  3375.  
  3376.  
  3377.          CYRIX 83D87
  3378.                                                                      max
  3379.          funct. interval    %wrong ULP_hi ULPs_hi ULP_lo ULPs_lo ULP err
  3380.  
  3381.          SIN    0,pi/4       1.554   1015      0     539       0       1
  3382.          COS    0,pi/4       0.925    143      0     782       0       1
  3383.          TAN    0,pi/4       4.147    881      0    3266       0       1
  3384.          ATAN   0,1          0.656    229      0     427       0       1
  3385.          2XM1   0,0.5        2.628   1433      0    1194       0       1
  3386.          YL2XP1 0,sqrt(2)-1  3.242    825      0    2417       0       1
  3387.          YL2X   0.1,10       0.931    256      0     675       0       1
  3388.  
  3389.          CYRIX 387+
  3390.                                                                  max
  3391.          funct. interval    %wrong ULP_hi ULPs_hi ULP_lo ULPs_lo ULP err
  3392.  
  3393.          SIN    0,pi/4       1.486    864       0    622       0       1
  3394.          COS    0,pi/4       2.072     12       0   2060       0       1
  3395.          TAN    0,pi/4       0.602     63       0    539       0       1
  3396.          ATAN   0,1          0.384     12       0    372       0       1
  3397.          2XM1   0,0.5        1.985     27       0   1958       0       1
  3398.          YL2XP1 0,sqrt(2)-1  3.662   1705       0   1957       0       1
  3399.          YL2X   0.1,10       0.764    367       0    397       0       1
  3400.  
  3401.  
  3402.          INTEL RapidCAD, Intel 486
  3403.                                                                  max
  3404.          funct. interval    %wrong ULP_hi ULPs_hi ULP_lo ULPs_lo ULP err
  3405.  
  3406.          SIN    0,pi/4      16.991   1517       0  15474       0       1
  3407.          COS    0,pi/4       9.003   7603       0   1400       0       1
  3408.          TAN    0,pi/4      10.532    441       0  10091       0       1
  3409.          ATAN   0,1          7.078   2386       0   4691       1       2
  3410.          2XM1   0,0.5       32.025      0       0  32025       0       1
  3411.          YL2XP1 0,sqrt(2)-1 21.800    533       0  21267       0       1
  3412.          YL2X   0.1,10       3.894   1879       0   2015       0       1
  3413.  
  3414.  
  3415. Discussion of the transcendental function tests
  3416. -----------------------------------------------
  3417.  
  3418. The test results above indicate that all 80x87 compatibles do not exceed
  3419. Intel's stated error bound of 3 ULPs for the transcendental functions.
  3420. However, some coprocessors are more accurate than others. Rating the
  3421. coprocessors according to the accuracy of their transcendental functions
  3422. gives the following list (highest accuracy first): Cyrix 387+, Cyrix 83D87,
  3423. Intel 486, Intel RapidCAD, Intel 80287(!), C&T 38700DX, Intel 387DX, Intel
  3424. 80387, IIT 3C87, ULSI 83C87. The tests also show that the problems with
  3425. excessive inaccuracy of the transcendental functions in early versions of the
  3426. IIT coprocessors with errors of up to 8 ULPs [8] have been corrected.
  3427. (According to [56], certain problems with the FPATAN instruction on the IIT
  3428. 3C87 occurring under the UNIX version of AutoCAD were corrected in June,
  3429. 1990.)
  3430.  
  3431. Considering the coprocessor emulators, the Franke387 has acceptable accuracy
  3432. for the FSIN, FCOS, and FPATAN instructions, taking into consideration that
  3433. according to its documentation, Franke387 uses only 64 bits of precision for
  3434. the intermediate results, while coprocessors typically use 68 bits and more.
  3435. However, the larger error in the FPTAN, F2XM1, FYL2XP1, and especially the
  3436. FYL2X operations show that the emulator doesn't use state-of-the-art
  3437. algorithms, which ensure an error of only a very few ULPs even if no extra
  3438. precise intermediate results are available. Microsoft's emulator, meanwhile,
  3439. provides transcendental functions with rather good accuracy, except for the
  3440. logarithmic operations, which contain some minor flaws. The Q387 emulator,
  3441. which came out only recently and is the fastest emulator available, could
  3442. unfortunately not be tested since it caused TRANCK to abort with a GP (general
  3443. protection) fault for every input that I tried.
  3444.  
  3445.  
  3446.  
  3447. ======================================================
  3448. Intel 387DX compatibility testing / The SMDIAG program
  3449. ======================================================
  3450.  
  3451. Chips and Technologies has included the program SMDIAG on the V1.0 diagnostic
  3452. disk distributed with its SuperMATH 38700DX coprocessor. Its stated purpose
  3453. is to test the compatibility of the computational results and flag settings
  3454. returned by the C&T coprocessor with the Intel 387DX. However, the tests for
  3455. the transcendental functions seem to have been tweaked to let the C&T 38700DX
  3456. pass, while coprocessors like the Intel RapidCAD and the Cyrix 83D87 fail.
  3457. Also, SMDIAG shows failure in the FSCALE test for the Intel RapidCAD, Cyrix
  3458. 83D87, Cyrix 387+, and ULSI 83C87, even though they return the correct result
  3459. according to Intel's documentation for the Intel 387DX (Intel's second
  3460. generation 387), which is indeed returned by the 387DX. (SMDIAG apparently
  3461. expects the result returned by the original Intel 80387.)
  3462.  
  3463. Note that chip manufacturers often do quite bug fixes, so it wouldn't be
  3464. surprising if somebody else, using different runs of the same manufacturer's
  3465. chip, came up with different results than the ones below. The Intel 387 alone
  3466. seems to have been produced in four different versions that can be told apart
  3467. by software, and Cyrix, ULSI, and IIT have manufactured at least two versions
  3468. each of their coprocessors. (The coprocessors I tested have the following
  3469. manufacturing dates stamped on them. Intel 387DX: 91/49, C&T 38700DX: 92/19,
  3470. Cyrix 387+: 92/11, Intel RapidCAD: 92/05, ULSI 83C87: 91/48, IIT 3C87:
  3471. 92/20.)
  3472.  
  3473.        Results of running the SMDIAG program on 387-compatible coprocessors
  3474.        (p = passed, f = failed)
  3475.  
  3476.                       Intel Intel Intel Cyrix Cyrix   IIT  ULSI   C&T
  3477.        Test        RapidCAD 387DX 80387  387+ 83D87  3C87 83C87 38700
  3478.  
  3479.        1  (fstore)        f     p     p     p     f     f     f     p ##,%%
  3480.        2  (fiall)         p     p     p     p     p     p     f     p
  3481.        3  (faddsub)       p     p     p     p     p     p     p     p
  3482.        4  (faddsub_nr)    p     p     p     p     f     f     f     p %%
  3483.        5  (faddsub_cp)    p     p     p     p     f     f     f     p %%
  3484.        6  (faddsub_dn)    p     p     p     p     f     f     f     p %%
  3485.        7  (faddsub_up)    p     p     p     p     f     f     f     p %%,&&
  3486.        8  (fmul)          p     p     p     p     p     f     f     p
  3487.        9  (fdivn)         p     p     p     p     p     p     p     p
  3488.        10 (fdiv)          p     p     p     p     p     p     f     p
  3489.        11 (fxch)          p     p     p     p     p     p     p     p
  3490.        12 (fyl2x)         p     p     p     f     f     f     f     p ++
  3491.        13 (fyl2xp1)       f     p     p     f     f     f     f     p ++
  3492.        14 (fsqrt)         p     p     p     p     p     p     p     p
  3493.        15 (fsincos)       f     p     p     f     f     f     f     p ++
  3494.        16 (fptan)         p     p     p     f     p     f     f     p ++
  3495.        17 (fpatan)        p     p     p     f     f     f     f     p ++
  3496.        18 (f2xm1)         p     p     p     f     f     f     f     p ++
  3497.        19 (fscale)        f     f     p     f     f     f     f     p **
  3498.        20 (fcom1)         p     p     p     p     p     f     f     p
  3499.        21 (fprem)         p     p     p     p     p     p     p     p
  3500.        22 (misc1)         p     p     p     p     p     f     f     p
  3501.        23 (misc3)         p     p     p     p     p     p     p     p
  3502.        24 (misc4)         p     p     p     p     f     f     p     p %%
  3503.  
  3504.        failed modules:    4     1     0     7    12    16    17     0
  3505.  
  3506.  
  3507.        ## the failure of the Intel RapidCAD is caused by the fact that
  3508.           it stores the value of BCD INDEFINITE differently from the
  3509.           Intel 387DX. It uses FFFFC000000000000000, while the 387DX uses
  3510.           FFFF8000000000000000. However, both encodings are valid according
  3511.           to Intel's documentation, which defines the BCD INDEFINITE as
  3512.           FFFFUUUUUUUUUUUUUUUU, where U is undefined. So failure of the
  3513.           RapidCAD to deliver the same answer as the 387DX is not an
  3514.           "error", just a very slight incompatibility.
  3515.        ** the FSCALE errors reported for the Intel 387DX, Intel RapidCAD,
  3516.           Cyrix 83D87, Cyrix 387+, and ULSI 83C87 are due to a single
  3517.           'wrong' result each returned by one of the FSCALE computations.
  3518.           SMDIAG expects the result returned by the first generation
  3519.           Intel 80387 (and, of course, the C&T 38700DX). However, this
  3520.           result is wrong according to Intel's documentation and the
  3521.           behavior was corrected in the second generation Intel 387DX.
  3522.           Therefore, the Intel RapidCAD, Cyrix 83D87, Cyrix 387+, and ULSI
  3523.           83C87 return the correct result compatible with the Intel 387DX.
  3524.        %% Failures reported for the Cyrix 83D87 are due to the fact that it
  3525.           converts pseudodenormals contained in its registers to normalized
  3526.           numbers upon storing them to memory with the FSTP TBYTE PTR
  3527.           instruction. Intel's processors store pseudodenormals without
  3528.           'normalizing' them. This is an incompatibility, but not an error,
  3529.           because both encodings will evaluate to the same value should
  3530.           they be reused in a calculation.
  3531.        && Two of the failures reported for the Cyrix 83D87 are actual
  3532.           errors where the Cyrix 83D87 fails to deliver the correct result.
  3533.           1) control word = 0A7F (closure=proj., round=up, precision=53bit)
  3534.              ST(0) = 0001 ABCEF9876542101
  3535.              ST(1) = 0001 800000000345FFF
  3536.              instruction: FSUBRP ST(1), ST
  3537.              result should be: 0000 2BCEF987650EC800, status word = 3A30
  3538.              83D87 returns:    0000 3BCEF987650EC000, status word = 3830
  3539.           2) control word = 0A7F (closure=proj., round=up, precision=53bit)
  3540.              ST(0) = 0001 ABCEF9876542101
  3541.              ST(1) = 0001 800000000000000
  3542.              instruction: FSUB ST, ST(1)
  3543.              result should be: 0000 2BCEF98765432800, status word = 3A30
  3544.              83D87 returns:    0000 3BCEF98765432000, status word = 3830
  3545.        ++ The failures for the test of transcendental functions are caused
  3546.           by the tested coprocessor returning results that differ from the
  3547.           ones returned by the Intel 387DX. On the Cyrix 83D87, Cyrix 387+,
  3548.           and Intel RapidCAD, this is simply due to the improved accuracy
  3549.           these coprocessors provide over the Intel 387DX. The failures of
  3550.           the IIT 3C87 and ULSI 83C87 are mainly due to the lesser accuracy
  3551.           in the transcendental functions of these coprocessors, but for
  3552.           the IIT 3C87 an additional source of failures is its inability to
  3553.           handle extended-precision denormals.
  3554.  
  3555.  
  3556. Another compatibility issue that has been discussed on Usenet is the behavior
  3557. of the math coprocessors under protected-mode operating systems. I have seen
  3558. postings claiming that coprocessors from ULSI, IIT, and Cyrix locked up the
  3559. machine when a protected mode operating system (several UNIX derivatives were
  3560. also mentioned) was run on them. However, there have also been reports that
  3561. several 486-based systems also have this problem, while others do not.
  3562. Therefore, I think most of these problems are caused by poor motherboard
  3563. design, especially wrong handling of error interrupts coming from the
  3564. coprocessor. There could also be bugs in the exception handlers of the
  3565. operating system.
  3566.  
  3567.  
  3568.  
  3569. ==========
  3570. References
  3571. ==========
  3572.  
  3573. [1]  Schnurer, G.: Zahlenknacker im Vormarsch. c't 1992, Heft 4, Seiten 170-
  3574.      186
  3575.  
  3576. [2]  Curnow, H.J.; Wichmann, B.A.: A synthetic benchmark. Computer Journal,
  3577.      Vol. 19, No. 1, 1976, pp. 43-49
  3578.  
  3579. [3]  Wichmann, B.A.: Validation code for the Whetstone benchmark. NPL Report
  3580.      DITC 107/88, National Physics Laboratory, UK, March 1988
  3581.  
  3582. [4]  Curnow, H.J.: Wither Whetstone? The Synthetic Benchmark after 15 Years.
  3583.      In: Aad van der Steen (ed.): Evaluating Supercomputers. London: Chapman
  3584.      and Hall 1990
  3585.  
  3586. [5]  Dongarra, J.J.: The Linpack Benchmark: An Explanation. In: Aad van der
  3587.      Steen (ed.): Evaluating Supercomputers. London: Chapman and Hall 1990
  3588. [6]  Dongarra, J.J.: Performance of Various Computers Using Standard Linear
  3589.      Equations Software. Report CS-89-85, Computer Science Department,
  3590.      University of Tennessee, March 11, 1992
  3591.  
  3592. [7]  Huth, N.: Dichtung und Wahrheit oder Datenblatt und Test. Design &
  3593.      Elektronik 1990, Heft 13, Seiten 105-110
  3594.  
  3595. [8]  Ungerer, B.: Sockelfolger. c't 1990, Heft 4, Seiten 162-163
  3596.  
  3597. [9]  Coonen, J.T.: Contributions to a Proposed Standard for Binary Floating-
  3598.      Point Arithmetic Ph.D. thesis, University of California, Berkeley, 1984
  3599.  
  3600. [10] IEEE: IEEE Standard for Binary Floating-Point Arithmetic. SIGPLAN
  3601.      Notices, Vol. 22, No. 2, 1985, pp. 9-25
  3602.  
  3603. [11] IEEE Standard for Binary Floating-Point Arithmetic. ANSI/IEEE Std 754-
  3604.      1985. New York, NY: Institute of Electrical and Electronics Engineers
  3605.      1985
  3606.  
  3607. [12] FasMath 83D87 Compatibility Report. Cyrix Corporation, Nov. 1989 Order
  3608.      No. B2004
  3609.  
  3610. [13] FasMath 83D87 Accuracy Report. Cyrix Corporation, July 1990 Order No.
  3611.      B2002
  3612.  
  3613. [14] FasMath 83D87 Benchmark Report. Cyrix Corporation, June 1990 Order No.
  3614.      B2004
  3615.  
  3616. [15] FasMath 83D87 User's Manual. Cyrix Corporation, June 1990 Order No.
  3617.      L2001-003
  3618.  
  3619. [16] Brent, R.P.: A FORTRAN multiple-precision arithmetic package. ACM
  3620.      Transactions on Mathematical Software, Vol. 4, No. 1, March 1978, pp.
  3621.      57-70
  3622.  
  3623. [17] 387DX User's Manual, Programmer's Reference. Intel Corporation, 1989
  3624.      Order No. 231917-002
  3625.  
  3626. [18] Volder, J.E.: The CORDIC Trigonometric Computing Technique. IRE
  3627.      Transactions on Electronic Computers, Vol. EC-8, No. 5, September 1959,
  3628.      pp. 330-334
  3629.  
  3630. [19] Walther, J.S.: A unified algorithm for elementary functions. AFIPS
  3631.      Conference Proceedings, Vol. 38, SJCC 1971, pp. 379-385
  3632.  
  3633. [20] Esser, R.; Kremer, F.; Schmidt, W.G.: Testrechnungen auf der IBM 3090E
  3634.      mit Vektoreinrichtung. Arbeitsbericht RRZK-8803, Regionales
  3635.      Rechenzentrum an der Universit"at zu Köln, Februar 1988
  3636.  
  3637. [21] McMahon, H.H.: The Livermore Fortran Kernels: A test of the numerical
  3638.      performance range. Technical Report UCRL-53745, Lawrence Livermore
  3639.      National Laboratory, USA, December 1986
  3640.  
  3641. [22] Nave, R.: Implementation of Transcendental Functions on a Numerics
  3642.      Processor. Microprocessing and Microprogramming, Vol. 11, No. 3-4,
  3643.      March-April 1983, pp. 221-225
  3644.  
  3645. [23] Yuen, A.K.: Intel's Floating-Point Processors. Electro/88 Conference
  3646.      Record, Boston, MA, USA, 10-12 May 1988, pp. 48/5-1 - 48/5-7
  3647.  
  3648. [24] Stiller, A.; Ungerer, B.: Ausgerechnet. c't 1990, Heft 1, Seiten 90-92
  3649.  
  3650. [25] Rosch, W.L.: Handfeste Hilfe oder Seifenblase? PC Professionell, Juni
  3651.      1991, Seiten 214-237
  3652. [26] Intel 80286 Hardware Reference Manual. Intel Corporation, 1987 Order
  3653.      No.210760-002
  3654.  
  3655. [27] AMD 80C287 80-bit CMOS Numeric Processor. Advanced Micro Devices, June
  3656.      1989 Order No. 11671B/0
  3657.  
  3658. [28] Intel RapidCAD(tm) Engineering CoProcessor Performance Brief. Intel
  3659.      Corporation, 1992
  3660.  
  3661. [29] i486(tm) Microprocessor Performance Report. Intel Corporation, April
  3662.      1990 Order No. 240734-001
  3663.  
  3664. [30] Intel486(tm) DX2 Microprocessor Performance Brief. Intel Corporation,
  3665.      March 1992 Order No. 241254-001
  3666.  
  3667. [31] Abacus 3167 Floating-Point Coprocessor Data Book. Weitek Corporation,
  3668.      July 1990 DOC No. 9030
  3669.  
  3670. [32] WTL 4167 Floating-Point Coprocessor Data Book. Weitek Corporation, July
  3671.      1989 DOC No. 8943
  3672.  
  3673. [33] Abacus Software Designer's Guide. Weitek Corporation, September 1989 DOC
  3674.      No. 8967
  3675.  
  3676. [34] Stiller, A.: Cache & Carry. c't 1992, Heft 6, Seiten 118-130
  3677.  
  3678. [35] Stiller, A.: Cache & Carry, Teil 2. c't 1992, Heft 7, Seiten 28-34
  3679.  
  3680. [36] Palmer, J.F.; Morse, S.P.: Die mathematischen Grundlagen der Numerik-
  3681.      Prozessoren 8087/80287. München: tewi 1985
  3682.  
  3683. [37] 80C187 80-bit Math Coprocessor Data Sheet. Intel Corporation, September
  3684.      1989 Order No. 270640-003
  3685.  
  3686. [38] IIT-2C87 80-bit Numeric Co-Processor Data Sheet. IIT, May 1990
  3687.  
  3688. [39] Engineering note 4x4 matrix multiply transformation. IIT, 1989
  3689.  
  3690. [40] Tscheuschner, E.: 4 mal 4 auf einen Streich. c't 1990, Heft 3, Seiten
  3691.      266-276
  3692.  
  3693. [41] Goldberg, D.: Computer Arithmetic. In: Hennessy, J.L.; Patterson, D.A.:
  3694.      Computer Architecture A Quantitative Approach. San Mateo, CA: Morgan
  3695.      Kaufmann 1990
  3696.  
  3697. [42] 8087 Math Coprocessor Data Sheet. Intel Corporation, October 1989, Order
  3698.      No. 205835-007
  3699.  
  3700. [43] 8086/8088 User's Manual, Programmer's and Hardware Reference. Intel
  3701.      Corporation, 1989 Order No. 240487-001
  3702.  
  3703. [44] 80286 and 80287 Programmer's Reference Manual. Intel Corporation, 1987
  3704.      Order No. 210498-005
  3705.  
  3706. [45] 80287XL/XLT CHMOS III Math Coprocessor Data Sheet. Intel Corporation,
  3707.      May 1990 Order No. 290376-001
  3708.  
  3709. [46] Cyrix FasMath(tm) 82S87 Coprocessor Data Sheet. Cyrix Coporation, 1991
  3710.      Document 94018-00 Rev. 1.0
  3711.  
  3712. [47] IIT-3C87 80-bit Numeric Co-Processor Data Sheet. IIT, May 1990
  3713.  
  3714. [48] 486(tm)SX(tm) Microprocessor/ 487(tm)SX(tm) Math CoProcessor Data Sheet.
  3715.      Intel Corporation, April 1991. Order No. 240950-001
  3716.  
  3717. [49] Schnurer, G.: Die gro"se Verlade. c't 1991, Heft 7, Seiten 55-57
  3718.  
  3719. [50] Schnurer, G.: Eine 4 f"ur alle. c't 1991, Heft 6, Seite 25
  3720.  
  3721. [51] Intel486(tm)DX Microprocessor Data Book. Intel Corporation, June 1991
  3722.      Order No. 240440-004
  3723.  
  3724. [52] i486(tm) Microprocessor Hardware Reference Manual. Intel Corporation,
  3725.      1990 Order No. 240552-001
  3726.  
  3727. [53] i486(tm) Microprocessor Programmer's Reference Manual. Intel
  3728.      Corporation, 1990 Order No. 240486-001
  3729.  
  3730. [54] Ungerer, B.: Kalte H"ute. c't 1992, Heft 8, Seiten 140-144
  3731.  
  3732. [55] Ungerer, B.: Hei"se Sache. c't 1991, Heft 4, Seiten 104-108
  3733.  
  3734. [56] Rosch, W.L.: Handfeste Hilfe oder Seifenblase? PC Profesionell, Juni
  3735.      1991, Seiten 214-237
  3736.  
  3737. [57] Niederkr"uger, W.: Lebendige Vergangenheit. c't 1990, Heft 12, Seiten
  3738.      114-116
  3739.  
  3740. [58] ULSI Math*Co Advanced Math Coprocessor Technical Specification. ULSI
  3741.      System, 5/92, Rev. E
  3742.  
  3743. [59] 387(tm)DX Math CoProcessor Data Sheet. Intel Corporation, September
  3744.      1990. Order No. 240448-003
  3745.  
  3746. [60] 387(tm) Numerics Coprocessor Extension Data Sheet. Intel Corporation,
  3747.      February 1989. Order No. 231920-005
  3748.  
  3749. [61] Koren, I.; Zinaty, O.: Evaluating Elementary Functions in a Numerical
  3750.      Coprocessor Based on Rational Approximations. IEEE Transactions on
  3751.      Computers, Vol. C-39, No. 8, August 1990, pp. 1030-1037
  3752.  
  3753. [62] 387(tm) SX Math CoProcessor Data Sheet. Intel Corporation, November 1989
  3754.      Order No. 240225-005
  3755.  
  3756. [63] Frenkel, G.: Coprocessors Speed Numeric Operations. PC-Week, August 27,
  3757.      1990
  3758.  
  3759. [64] Schnurer, G.; Stiller, A.: Auto-Matt. c't 1991, Heft 10, Seiten 94-96
  3760.  
  3761. [65] Grehan, R.: FPU Face-Off. Byte, November 1990, pp. 194-200
  3762.  
  3763. [66] Tang, P.T.P.: Testing Computer Arithmetic by Elementary Number Theory.
  3764.      Preprint MCS-P84-0889, Mathematics and Computer Science Division,
  3765.      Argonne National Laboratory, August 1989
  3766.  
  3767. [67] Ferguson, W.E.: Selecting math coprocessors. IEEE Spectrum, July 1991,
  3768.      pp. 38-41
  3769.  
  3770. [68] Schnabel, J.: Viermal 387. Computer Pers"onlich 1991, Heft 22, Seiten
  3771.      153-156
  3772.  
  3773. [69] Hofmann, J.: Starke Rechenknechte. mc 1990, Heft 7, Seiten 64-67
  3774.  
  3775. [70] Woerrlein, H.; Hinnenberg, R.: Die Lust an der Power. Computer Live
  3776.      1991, Heft 10, Seiten 138-149
  3777.  
  3778. [71] email from Peter Forsberg (peterf@vnet.ibm.com), email from Alan Brown
  3779.      (abrown@Reston.ICL.COM)
  3780.  
  3781. [72] email from Eric Johnson (johnsone%camax01@uunet.UU.NET), email from
  3782.      Jerry Whelan (guru@stasi.bradley.edu), email from Arto Viitanen
  3783.      (av@cs.uta.fi), email from Richard Krehbiel (richk@grebyn.com)
  3784.  
  3785. [73] email from Fred Dunlap (cyrix!fred@texsun.Central.Sun.COM)
  3786.  
  3787. [74] correspondence with Bengt Ask (f89ba@efd.lth.se)
  3788.  
  3789. [75] email from Thomas Hoberg (tmh@prosun.first.gmd.de)
  3790.  
  3791. [76] Microsoft Macro Assembler Programmer's Guide Version 6.0, Microsoft
  3792.      Corporation, 1991. Document No. LN06556-0291
  3793.  
  3794. [77] FasMath EMC87 User's Manual, Rev. 2. Cyrix Corporation, February 1991
  3795.      Order No. 90018-00
  3796.  
  3797. [78] Persson, C.: Die 32-Bit-Parade c't 1992, Heft 9, Seiten 150-156
  3798.  
  3799. [79] email from Duncan Murdoch (dmurdoch@mast.QueensU.CA)
  3800.  
  3801.  
  3802.  
  3803. ========================
  3804. Manufacturer's addresses
  3805. ========================
  3806.  
  3807.   Intel Corporation
  3808.   3065 Bowers Avenue
  3809.   Santa Clara, CA 95051
  3810.   USA
  3811.  
  3812.   IIT Integrated Information Technology, Inc.
  3813.   2540 Mission College Blvd.
  3814.   Santa Clara, CA 95054
  3815.   USA
  3816.  
  3817.   ULSI Systems, Inc.
  3818.   58 Daggett Drive
  3819.   San Jose, CA 95134
  3820.   USA
  3821.  
  3822.   Chips & Technologies, Inc.
  3823.   3050 Zanker Road
  3824.   San Jose, CA 95134
  3825.   USA
  3826.  
  3827.   Weitek Corporation
  3828.   1060 East Arques Avenue
  3829.   Sunnyvale, CA 94086
  3830.   USA
  3831.  
  3832.   AMD Advanced Microdevices, Inc.
  3833.   901 Thompson Place
  3834.   P.O.B. 3453
  3835.   Sunnyvale, CA 94088-3453
  3836.   USA
  3837.  
  3838.   Cyrix Corporation
  3839.   P.O.B. 850118
  3840.   Richardson, TX 75085
  3841.   USA
  3842.  
  3843.  
  3844.  
  3845. ===============================
  3846. Appendix A: Test program source
  3847. ===============================
  3848.  
  3849.   {$N+,E+}
  3850.   PROGRAM PCtrl;
  3851.  
  3852.   VAR B,c: EXTENDED;
  3853.       Precision, L: WORD;
  3854.  
  3855.   PROCEDURE SetPrecisionControl (Precision: WORD);
  3856.   (* This procedure sets the internal precision of the NDP. Available *)
  3857.   (* precision values:  0  -  24 bits (SINGLE)                        *)
  3858.   (*                    1  -  n.a. (mapped to single)                 *)
  3859.   (*                    2  -  53 bits (DOUBLE)                        *)
  3860.   (*                    3  -  64 bits (EXTENDED)                      *)
  3861.  
  3862.   VAR CtrlWord: WORD;
  3863.  
  3864.   BEGIN {SetPrecisionCtrl}
  3865.      IF Precision = 1 THEN
  3866.         Precision := 0;
  3867.      Precision := Precision SHL 8; { make mask for PC field in ctrl word}
  3868.      ASM
  3869.         FSTCW    [CtrlWord]        { store NDP control word }
  3870.         MOV      AX, [CtrlWord]    { load control word into CPU }
  3871.         AND      AX, 0FCFFh        { mask out precision control field }
  3872.         OR       AX, [Precision]   { set desired precision in PC field }
  3873.         MOV      [CtrlWord], AX    { store new control word }
  3874.         FLDCW    [CtrlWord]        { set new precision control in NDP }
  3875.      END;
  3876.   END; {SetPrecisionCtrl}
  3877.  
  3878.   BEGIN {main}
  3879.      FOR Precision := 1 TO 3 DO BEGIN
  3880.         B := 1.2345678901234567890;
  3881.         SetPrecisionControl (Precision);
  3882.         FOR L := 1 TO 20 DO BEGIN
  3883.            B := Sqrt (B);
  3884.         END;
  3885.         FOR L := 1 TO 20 DO BEGIN
  3886.            B := B*B;
  3887.         END;
  3888.         SetPrecisionControl (3);   { full precision for printout }
  3889.         WriteLn (Precision, B:28);
  3890.      END;
  3891.   END.
  3892.  
  3893.  
  3894.   +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  3895.  
  3896.   {$N+,E+}
  3897.   PROGRAM RCtrl;
  3898.  
  3899.   VAR B,c: EXTENDED;
  3900.       RoundingMode, L: WORD;
  3901.  
  3902.  
  3903.   PROCEDURE SetRoundingMode (RCMode: WORD);
  3904.   (* This procedure selects one of four available rounding modes *)
  3905.   (* 0  -  Round to nearest (default)                            *)
  3906.   (* 1  -  Round down (towards negative infinity)                *)
  3907.   (* 2  -  Round up (towards positive infinity)                  *)
  3908.   (* 3  -  Chop (truncate, round towards zero)                   *)
  3909.  
  3910.   VAR CtrlWord: WORD;
  3911.  
  3912.   BEGIN
  3913.      RCMode := RCMode SHL 10;  { make mask for RC field in control word}
  3914.      ASM
  3915.         FSTCW    [CtrlWord]        { store NDP control word }
  3916.         MOV      AX, [CtrlWord]    { load control word into CPU }
  3917.         AND      AX, 0F3FFh        { mask out rounding control field }
  3918.         OR       AX, [RCMode]      { set desired precision in RC field }
  3919.         MOV      [CtrlWord], AX    { store new control word }
  3920.         FLDCW    [CtrlWord]        { set new rounding control in NDP }
  3921.      END;
  3922.   END;
  3923.  
  3924.   BEGIN
  3925.      FOR RoundingMode := 0 TO 3 DO BEGIN
  3926.         B := 1.2345678901234567890e100;
  3927.         SetRoundingMode (RoundingMode);
  3928.         FOR L := 1 TO 51 DO BEGIN
  3929.            B := Sqrt (B);
  3930.         END;
  3931.            FOR L := 1 TO 51 DO BEGIN
  3932.            B := -B*B;
  3933.         END;
  3934.         SetRoundingMode (0);        { round to nearest for printout }
  3935.         WriteLn (RoundingMode, B:28);
  3936.      END;
  3937.   END.
  3938.  
  3939.  
  3940.   +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  3941.  
  3942.   {$N+,E+}
  3943.  
  3944.   PROGRAM DenormTs;
  3945.  
  3946.   VAR E: EXTENDED;
  3947.       D: DOUBLE;
  3948.       S: SINGLE;
  3949.  
  3950.   BEGIN
  3951.      WriteLn ('Testing support and printing of denormals');
  3952.      WriteLn;
  3953.      Write ('Coprocessor is: ');
  3954.      CASE Test8087 OF
  3955.         0: WriteLn ('Emulator');
  3956.         1: WriteLn ('8087 or compatible');
  3957.         2: WriteLn ('80287 or compatible');
  3958.         3: WriteLn ('80387 or compatible');
  3959.      END;
  3960.      WriteLn;
  3961.      S := 1.18e-38;
  3962.      S := S * 3.90625e-3;
  3963.      IF S = 0 THEN
  3964.         WriteLn ('SINGLE denormals not supported')
  3965.      ELSE BEGIN
  3966.         WriteLn ('SINGLE denormals supported');
  3967.         WriteLn ('SINGLE denormal prints as:   ', S);
  3968.         WriteLn ('Denormal should be printed as 4.60943...E-0041');
  3969.      END;
  3970.      WriteLn;
  3971.      D := 2.24e-308;
  3972.      D := D * 3.90625e-3;
  3973.      IF D = 0 THEN
  3974.         WriteLn ('DOUBLE denormals not supported')
  3975.      ELSE BEGIN
  3976.         WriteLn ('DOUBLE denormals supported');
  3977.         WriteLn ('DOUBLE denormal prints as:   ', D);
  3978.         WriteLn ('Denormal should be printed as 8.75...E-0311');
  3979.      END;
  3980.      WriteLn;
  3981.      E := 3.37e-4932;
  3982.      E := E * 3.90625e-3;
  3983.      IF E = 0 THEN
  3984.         WriteLn ('EXTENDED denormals not supported')
  3985.      ELSE BEGIN
  3986.         WriteLn ('EXTENDED denormals supported');
  3987.         WriteLn ('EXTENDED denormal prints as: ', E);
  3988.         WriteLn ('Denormal should be printed as 1.3164...E-4934');
  3989.      END;
  3990.   END.
  3991.  
  3992.  
  3993.  
  3994. ====================================
  3995. Appendix B: Benchmark program source
  3996. ====================================
  3997.  
  3998.  
  3999.   ; FILE: APFELM4.ASM
  4000.   ; assemble with MASM /e APFELM4 or TASM /e APFELM4
  4001.  
  4002.  
  4003.   CODE        SEGMENT BYTE PUBLIC 'CODE'
  4004.               ASSUME  CS: CODE
  4005.  
  4006.               PAGE    ,120
  4007.  
  4008.               PUBLIC  APPLE87;
  4009.  
  4010.   APPLE87     PROC    NEAR
  4011.               PUSH    BP                  ; save caller's base pointer
  4012.               MOV     BP, SP              ; make new frame pointer
  4013.               PUSH    DS                  ; save caller's data segment
  4014.               PUSH    SI                  ; save register
  4015.               PUSH    DI                  ;  variables
  4016.               LDS     BX, [BP+04]         ; pointer to parameter record
  4017.               FINIT                       ; init 80x87          FSP->R0
  4018.               FILD   WORD  PTR [BX+02]    ; maxrad              FSP->R7
  4019.               FLD    QWORD PTR [BX+08]    ; qmax                FSP->R6
  4020.               FSUB   QWORD PTR [BX+16]    ; qmax-qmin           FSP->R6
  4021.               DEC    WORD  PTR [BX+04]    ; ymax-1
  4022.               FIDIV  WORD  PTR [BX+04]    ; (qmax-qmin)/(ymax-1)FSP->R6
  4023.               FSTP   QWORD PTR [BX+16]    ; save delta_q        FSP->R7
  4024.               FLD    QWORD PTR [BX+24]    ; pmax                FSP->R6
  4025.               FSUB   QWORD PTR [BX+32]    ; pmax-pmin           FSP->R6
  4026.               DEC    WORD  PTR [BX+06]    ; xmax-1
  4027.               FIDIV  WORD  PTR [BX+06]    ; delta_p             FSP->R6
  4028.               MOV    AX, [BX]             ; save maxiter,[BX] needed for
  4029.               MOV    [BX+2], AX           ;  80x87 status now
  4030.               XOR    BP, BP               ; y=0
  4031.               FLD    QWORD PTR [BX+08]    ; qmax                FSP->R5
  4032.               CMP    WORD  PTR [BX+40], 0 ; fast mode on 8087 desired ?
  4033.               JE     yloop                ; no, normal mode
  4034.               FSTCW  [BX]                 ; save NDP control word
  4035.               AND    WORD PTR [BX], 0FCFFh; set PCTRL = single-precision
  4036.               FLDCW  [BX]                 ; get back NDP control word
  4037.   yloop:      XOR    DI, DI               ; x=0
  4038.               FLD    QWORD PTR [BX+32]    ; pmin                FSP->R4
  4039.   xloop:      FLDZ                        ; j**2= 0             FSP->R3
  4040.               FLDZ                        ; 2ij = 0             FSP->R2
  4041.               FLDZ                        ; i**2= 0             FSP->R1
  4042.               MOV    CX, [BX+2]           ; maxiter
  4043.               MOV    DL, 41h              ; mask for C0 and C3 cond.bits
  4044.   iteration:  FSUB   ST, ST(2)            ; i**2-j**2           FSP->R1
  4045.               FADD   ST, ST(3)            ; i**2-j**2+p = i     FSP->R1
  4046.               FLD    ST(0)                ; duplicate i         FSP->R0
  4047.               FMUL   ST(1), ST            ; i**2                FSP->R0
  4048.               FADD   ST, ST(0)            ; 2i                  FSP->R0
  4049.               FXCH   ST(2)                ; 2*i*j               FSP->R0
  4050.               FADD   ST, ST(5)            ; 2*i*j+q = j         FSP->R0
  4051.               FMUL   ST(2), ST            ; 2*i*j               FSP->R0
  4052.               FMUL   ST, ST(0)            ; j**2                FSP->R0
  4053.               FST    ST(3)                ; save j**2           FSP->R0
  4054.               FADD   ST, ST(1)            ; i**2+j**2           FSP->R0
  4055.               FCOMP  ST(7)                ; i**2+j**2 > maxrad? FSP->R1
  4056.               FSTSW  [BX]                 ; save 80x87 cond.codeFSP->R1
  4057.               TEST   BYTE PTR [BX+1], DL  ; test carry and zero flags
  4058.               LOOPNZ iteration            ; until maxiter if not diverg.
  4059.               MOV    DX, CX               ; number of loops executed
  4060.               NEG    CX                   ; carry set if CX <> 0
  4061.               ADC    DX, 0                ; adjust DX if no. of loops<>0
  4062.  
  4063.               ; plot point here (DI = X, BP = y, DX has the color)
  4064.  
  4065.               FSTP   ST(0)                ; pop i**2            FSP->R2
  4066.               FSTP   ST(0)                ; pop 2ij             FSP->R3
  4067.               FSTP   ST(0)                ; pop j**2            FSP->R4
  4068.               FADD   ST,ST(2)             ; p=p+delta_p         FSP->R4
  4069.               INC    DI                   ; x:=x+1
  4070.               CMP    DI, [BX+6]           ; x > xmax ?
  4071.               JBE    xloop                ; no, continue on same line
  4072.               FSTP   ST(0)                ; pop p               FSP->R5
  4073.               FSUB   QWORD PTR [BX+16]    ; q=q-delta_q         FSP->R5
  4074.               INC    BP                   ; y:=y+1
  4075.               CMP    BP, [BX+4]           ; y > ymax ?
  4076.               JBE    yloop                ; no, picture not done yet
  4077.  
  4078.   groesser:   POP    DI                   ; restore
  4079.               POP    SI                   ;  register variables
  4080.               POP    DS                   ; restore caller's data segm.
  4081.               POP    BP                   ; save caller's base pointer
  4082.               RET    4                    ; pop parameters and return
  4083.   APPLE87     ENDP
  4084.  
  4085.   CODE        ENDS
  4086.  
  4087.               END
  4088.  
  4089.   ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  4090.  
  4091.   UNIT Time;
  4092.  
  4093.   INTERFACE
  4094.  
  4095.   FUNCTION Clock: LONGINT;          { same as VMS; time in milliseconds }
  4096.  
  4097.  
  4098.   IMPLEMENTATION
  4099.  
  4100.   FUNCTION Clock: LONGINT; ASSEMBLER;
  4101.   ASM
  4102.              PUSH    DS            { save caller's data segment }
  4103.              XOR     DX, DX        { initialize data segment to }
  4104.              MOV     DS, DX        {  access ticker counter }
  4105.              MOV     BX, 46Ch      { offset of ticker counter in segm.}
  4106.              MOV     DX, 43h       { timer chip control port }
  4107.              MOV     AL, 4         { freeze timer 0 }
  4108.              PUSHF                 { save caller's int flag setting }
  4109.              STI                   { allow update of ticker counter }
  4110.              LES     DI, DS:[BX]   { read BIOS ticker counter }
  4111.              OUT     DX, AL        { latch timer 0 }
  4112.              LDS     SI, DS:[BX]   { read BIOS ticker counter }
  4113.              IN      AL, 40h       { read latched timer 0 lo-byte }
  4114.              MOV     AH, AL        { save lo-byte }
  4115.              IN      AL, 40h       { read latched timer 0 hi-byte }
  4116.              POPF                  { restore caller's int flag }
  4117.              XCHG    AL, AH        { correct order of hi and lo }
  4118.              MOV     CX, ES        { ticker counter 1 in CX:DI:AX }
  4119.              CMP     DI, SI        { ticker counter updated ? }
  4120.              JE      @no_update    { no }
  4121.              OR      AX, AX        { update before timer freeze ? }
  4122.              JNS     @no_update    { no }
  4123.              MOV     DI, SI        { use second }
  4124.              MOV     CX, DS        {  ticker counter }
  4125.   @no_update:NOT     AX            { counter counts down }
  4126.              MOV     BX, 36EDh     { load multiplier }
  4127.              MUL     BX            { W1 * M }
  4128.              MOV     SI, DX        { save W1 * M (hi) }
  4129.              MOV     AX, BX        { get M }
  4130.              MUL     DI            { W2 * M }
  4131.              XCHG    BX, AX        { AX = M, BX = W2 * M (lo) }
  4132.              MOV     DI, DX        { DI = W2 * M (hi) }
  4133.              ADD     BX, SI        { accumulate }
  4134.              ADC     DI, 0         {  result }
  4135.              XOR     SI, SI        { load zero }
  4136.              MUL     CX            { W3 * M }
  4137.              ADD     AX, DI        { accumulate }
  4138.              ADC     DX, SI        {  result in DX:AX:BX }
  4139.              MOV     DH, DL        { move result }
  4140.              MOV     DL, AH        {  from DL:AX:BX }
  4141.              MOV     AH, AL        {   to }
  4142.              MOV     AL, BH        {    DX:AX:BH }
  4143.              MOV     DI, DX        { save result }
  4144.              MOV     CX, AX        {  in DI:CX }
  4145.              MOV     AX, 25110     { calculate correction }
  4146.              MUL     DX            {  factor }
  4147.              SUB     CX, DX        { subtract correction }
  4148.              SBB     DI, SI        {  factor }
  4149.              XCHG    AX, CX        { result back }
  4150.              MOV     DX, DI        {  to DX:AX }
  4151.              POP     DS            { restore caller's data segment }
  4152.   END;
  4153.  
  4154.  
  4155.   BEGIN
  4156.      Port [$43] := $34;           { need rate generator, not square wave}
  4157.      Port [$40] := 0;             { generator as prog. by some BIOSes }
  4158.      Port [$40] := 0;             { for timer 0 }
  4159.   END. { Time }
  4160.  
  4161.  
  4162.   ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  4163.  
  4164.   {$A+,B-,R-,I-,V-,N+,E+}
  4165.   PROGRAM PeakFlop;
  4166.  
  4167.   USES Time;
  4168.  
  4169.   TYPE ParamRec = RECORD
  4170.                      MaxIter, MaxRad, YMax, XMax: WORD;
  4171.                      Qmax, Qmin, Pmax, Pmin: DOUBLE;
  4172.                      FastMod: WORD;
  4173.                      PlotFkt: POINTER;
  4174.                      FLOPS:LONGINT;
  4175.                   END;
  4176.  
  4177.   VAR Param: ParamRec;
  4178.       Start: LONGINT;
  4179.  
  4180.  
  4181.   {$L APFELM4.OBJ}
  4182.  
  4183.   PROCEDURE Apple87 (VAR Param: ParamRec);     EXTERNAL;
  4184.  
  4185.  
  4186.   BEGIN
  4187.      WITH Param DO BEGIN
  4188.         MaxIter:= 50;
  4189.         MaxRad := 30;
  4190.         YMax   := 30;
  4191.         XMax   := 30;
  4192.         Pmin   :=-2.1;
  4193.         Pmax   := 1.1;
  4194.         Qmin   :=-1.2;
  4195.         Qmax   := 1.2;
  4196.         FastMod:= Word (FALSE);
  4197.         PlotFkt:= NIL;
  4198.         Flops  := 0;
  4199.      END;
  4200.      Start := Clock;
  4201.      Apple87 (Param);         { executes 104002 FLOP }
  4202.      Start := Clock - Start;  { elapsed time in milliseconds }
  4203.      WriteLn ('Peak-MFLOPS: ', 104.002 / Start);
  4204.   END.
  4205.  
  4206.   ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  4207.  
  4208.   ; FILE: M4X4.ASM
  4209.   ;
  4210.   ; assemble with TASM /e M4X4 or MASM /e M4X4
  4211.  
  4212.   CODE      SEGMENT BYTE PUBLIC 'CODE'
  4213.  
  4214.             ASSUME  CS:CODE
  4215.  
  4216.             PUBLIC  MUL_4x4
  4217.             PUBLIC  IIT_MUL_4x4
  4218.  
  4219.  
  4220.   FSBP0     EQU     DB  0DBh, 0E8h        ; declare special IIT
  4221.   FSBP1     EQU     DB  0DBh, 0EBh        ;  instructions
  4222.   FSBP2     EQU     DB  0DBh, 0EAh
  4223.   F4X4      EQU     DB  0DBh, 0F1h
  4224.  
  4225.  
  4226.   ;---------------------------------------------------------------------
  4227.   ;
  4228.   ; MUL_4x4 multiplicates a four-by-four matrix by an array of four
  4229.   ; dimensional vectors. This operation is needed for 3D transformations
  4230.   ; in graphics data processing. There are arrays for each component of
  4231.   ; a vector. Thus there is an ; array containing all the x components,
  4232.   ; another containing all the y components and so on. Each component is
  4233.   ; an 8 byte IEEE floating-point number. Two indices into the array of
  4234.   ; vectors are given. The first is the index of the vector that will be
  4235.   ; processed first, the second is the index of the vector processed
  4236.   ; last.
  4237.   ;
  4238.   ;---------------------------------------------------------------------
  4239.  
  4240.   MUL_4x4   PROC    NEAR
  4241.  
  4242.             AddrX   EQU DWORD PTR [BP+24] ; address of X component array
  4243.             AddrY   EQU DWORD PTR [BP+20] ; address of Y component array
  4244.             AddrZ   EQU DWORD PTR [BP+16] ; address of Z component array
  4245.             AddrW   EQU DWORD PTR [BP+12] ; address of W component array
  4246.             AddrT   EQU DWORD PTR [BP+8]  ; addr. of 4x4 transform. mat.
  4247.             F       EQU WORD  PTR [BP+6]  ; first vector to process
  4248.             K       EQU WORD  PTR [BP+4]  ; last vector to process
  4249.             RetAddr EQU WORD  PTR [BP+2]  ; return address saved by call
  4250.             SavdBP  EQU WORD  PTR [BP+0]  ; saved frame pointer
  4251.             SavdDS  EQU WORD  PTR [BP-2]  ; caller's data segment
  4252.  
  4253.             PUSH    BP                    ; save TURBO-Pascal frame ptr
  4254.             MOV     BP, SP                ; new frame pointer
  4255.             PUSH    DS                    ; save TURBO-Pascal data segmnt
  4256.  
  4257.             MOV     CX, K                 ; final index
  4258.             SUB     CX, F                 ; final index - start index
  4259.             JNC     $ok                   ; must not
  4260.             JMP     $nothing              ;  be negative
  4261.   $ok:      INC     CX                    ; number of elements
  4262.  
  4263.             MOV     SI, F                 ; init offset into arrays
  4264.             SHL     SI, 1                 ; each
  4265.             SHL     SI, 1                 ;  element
  4266.             SHL     SI, 1                 ;   has 8 bytes
  4267.  
  4268.             LDS     DI, AddrT             ; addr. of transformation mat.
  4269.             FLD     QWORD PTR [DI]        ; load a[0,0]   = R7
  4270.             FLD     QWORD PTR [DI+8]      ; load a[0,1]   = R6
  4271.  
  4272.   $mat_mul: LES     BX, AddrX             ; addr. of x component array
  4273.             FLD     QWORD PTR ES:[BX+SI]  ; load x[a]     = R5
  4274.             LES     BX, AddrY             ; addr. of y component array
  4275.             FLD     QWORD PTR ES:[BX+SI]  ; load y[a]     = R4
  4276.             LES     BX, AddrZ             ; addr. of z component array
  4277.             FLD     QWORD PTR ES:[BX+SI]  ; load z[a]     = R3
  4278.             LES     BX, AddrW             ; addr. of w component array
  4279.             FLD     QWORD PTR ES:[BX+SI]  ; load w[a]     = R2
  4280.  
  4281.             FLD     ST(5)                 ; load a[0,0]   = R1
  4282.             FMUL    ST, ST(4)             ; a[0,0] * x[a] = R1
  4283.             FLD     ST(5)                 ; load a[0,1]   = R0
  4284.             FMUL    ST, ST(4)             ; a[0,1] * y[a] = R0
  4285.             FADDP   ST(1), ST             ; a[0,0]*x[a]+a[0,1]*y[a]=R1
  4286.             FLD     QWORD PTR [DI+16]     ; load a[0,2]   = R0
  4287.             FMUL    ST, ST(3)             ; a[0,2] * z[a] = R0
  4288.             FADDP   ST(1), ST             ; a[0,0]*x[a]...a[0,2]*z[a]=R1
  4289.             FLD     QWORD PTR [DI+24]     ; load a[0,3]   = R0
  4290.             FMUL    ST, ST(2)             ; a[0,3] * w[a] = R0
  4291.             FADDP   ST(1), ST             ; a[0,0]*x[a]...a[0,3]*w[a]=R1
  4292.             LES     BX, AddrX             ; get address of x vector
  4293.             FSTP    QWORD PTR ES:[BX+SI]  ; write new x[a]
  4294.  
  4295.             FLD     QWORD PTR [DI+32]     ; load a[1,0]   = R1
  4296.             FMUL    ST, ST(4)             ; a[1,0] * x[a] = R1
  4297.             FLD     QWORD PTR [DI+40]     ; load a[1,1]   = R0
  4298.             FMUL    ST, ST(4)             ; a[1,1] * y[a] = R0
  4299.             FADDP   ST(1), ST             ; a[1,0]*x[a]+a[1,1]*y[a]=R1
  4300.             FLD     QWORD PTR [DI+48]     ; load a[1,2]   = R0
  4301.             FMUL    ST, ST(3)             ; a[1,2] * z[a] = R0
  4302.             FADDP   ST(1), ST             ; a[1,0]*x[a]...a[1,2]*z[a]=R1
  4303.             FLD     QWORD PTR [DI+56]     ; load a[1,3]   = R0
  4304.             FMUL    ST, ST(2)             ; a[1,3] * w[a] = R0
  4305.             FADDP   ST(1), ST             ; a[1,0]*x[a]...a[1,3]*w[a]=R1
  4306.             LES     BX, AddrY             ; get address of y vector
  4307.             FSTP    QWORD PTR ES:[BX+SI]  ; write new y[a]
  4308.  
  4309.             FLD     QWORD PTR [DI+64]     ; load a[2,0]   = R1
  4310.             FMUL    ST, ST(4)             ; a[2,0] * x[a] = R1
  4311.             FLD     QWORD PTR [DI+72]     ; load a[2,1]   = R0
  4312.             FMUL    ST, ST(4)             ; a[2,1] * y[a] = R0
  4313.             FADDP   ST(1), ST             ; a[2,0]*x[a]+a[2,1]*y[a]=R1
  4314.             FLD     QWORD PTR [DI+80]     ; load a[2,2]   = R0
  4315.             FMUL    ST, ST(3)             ; a[2,2] * z[a] = R0
  4316.             FADDP   ST(1), ST             ; a[2,0]*x[a]...a[2,2]*z[a]=R1
  4317.             FLD     QWORD PTR [DI+88]     ; load a[2,3]   = R0
  4318.             FMUL    ST, ST(2)             ; a[2,3] * w[a] = R0
  4319.             FADDP   ST(1), ST             ; a[2,0]*x[a]...a[2,3]*w[a]=R1
  4320.             LES     BX, AddrZ             ; get address of z vector
  4321.             FSTP    QWORD PTR ES:[BX+SI]  ; write new z[a]
  4322.  
  4323.             FLD     QWORD PTR [DI+96]     ; load a[3,0]   = R1
  4324.             FMULP   ST(4), ST             ; a[3,0] * x[a] = R5
  4325.             FLD     QWORD PTR [DI+104]    ; load a[3,1]   = R1
  4326.             FMULP   ST(3), ST             ; a[3,1] * y[a] = R4
  4327.             FLD     QWORD PTR [DI+112]    ; load a[3,2]   = R1
  4328.             FMULP   ST(2), ST             ; a[3,2] * z[a] = R3
  4329.             FLD     QWORD PTR [DI+120]    ; load a[3,3]   = R1
  4330.             FMULP   ST(1), ST             ; a[3,3] * w[a] = R2
  4331.             FADDP   ST(1), ST             ; a[3,3]*w[a]+a[3,2]*z[a]=R3
  4332.             FADDP   ST(1), ST             ; a[3,3]*w[a]...a[3,1]*y[a]=R4
  4333.             FADDP   ST(1), ST             ; a[3,3]*w[a]...a[3,0]*x[a]=R5
  4334.             LES     BX, AddrW             ; get address of w vector
  4335.             FSTP    QWORD PTR ES:[BX+SI]  ; write new w[a]
  4336.  
  4337.             ADD     SI, 8                 ; new offset into arrays
  4338.             DEC     CX                    ; decrement element counter
  4339.             JZ      $done                 ; no elements left, done
  4340.             JMP     $mat_mul              ; transform next vector
  4341.  
  4342.   $done:    FSTP     ST(0)                ; clear
  4343.             FSTP     ST(0)                ;  FPU stack
  4344.   $nothing: POP      DS                   ; restore TP data segment
  4345.             POP      BP                   ; restore TP frame pointer
  4346.             RET      24                   ; pop parameters and return
  4347.  
  4348.   MUL_4X4   ENDP
  4349.  
  4350.  
  4351.   ;---------------------------------------------------------------------
  4352.   ;
  4353.   ; IIT_MUL_4x4 multiplicates a four-by-four matrix by an array of four
  4354.   ; dimensional vectors. This operation is needed for 3D transformations
  4355.   ; in graphics data processing. There are arrays for each component of
  4356.   ; a vector.  Thus there is an array containing all the x components,
  4357.   ; another containing all the y components and so on. Each component is
  4358.   ; an 8 byte IEEE floating-point number. Two indices into the array of
  4359.   ; vectors are given. The first is the index of the vector that will be
  4360.   ; processed first, the second is the index of the vector processed
  4361.   ; last. This subroutine uses the special instructions only available
  4362.   ; on IIT coprocessors to provide fast matrix multiply capabilities.
  4363.   ; So make sure to use it only on IIT coprocessors.
  4364.   ;
  4365.   ;---------------------------------------------------------------------
  4366.  
  4367.   IIT_MUL_4x4   PROC    NEAR
  4368.  
  4369.             AddrX   EQU DWORD PTR [BP+24] ; address of X component array
  4370.             AddrY   EQU DWORD PTR [BP+20] ; address of Y component array
  4371.             AddrZ   EQU DWORD PTR [BP+16] ; address of Z component array
  4372.             AddrW   EQU DWORD PTR [BP+12] ; address of W component array
  4373.             AddrT   EQU DWORD PTR [BP+8]  ; addr. of 4x4 transf. matrix
  4374.             F       EQU WORD  PTR [BP+6]  ; first vector to process
  4375.             K       EQU WORD  PTR [BP+4]  ; last vector to process
  4376.             RetAddr EQU WORD  PTR [BP+2]  ; return address saved by call
  4377.             SavdBP  EQU WORD  PTR [BP+0]  ; saved frame pointer
  4378.             SavdDS  EQU WORD  PTR [BP-2]  ; caller's data segment
  4379.             Ctrl87  EQU WORD  PTR [BP-4]  ; caller's 80x87 control word
  4380.  
  4381.             PUSH    BP                    ; save TURBO-Pascal frame ptr
  4382.             MOV     BP, SP                ; new frame pointer
  4383.             PUSH    DS                    ; save TURBO-Pascal data seg.
  4384.             SUB     SP, 2                 ; make local variabe
  4385.             FSTCW   [Ctrl87]              ; save 80x87 ctrl word
  4386.             LES     SI, AddrT             ; ptr to transformation matrix
  4387.             FINIT                         ; initialize coprocessor
  4388.             FSBP2                         ; set register bank 2
  4389.             FLD     QWORD PTR ES:[SI]     ; load a[0,0]
  4390.             FLD     QWORD PTR ES:[SI+32]  ; load a[1,0]
  4391.             FLD     QWORD PTR ES:[SI+64]  ; load a[2,0]
  4392.             FLD     QWORD PTR ES:[SI+96]  ; load a[3,0]
  4393.             FLD     QWORD PTR ES:[SI+8]   ; load a[0,1]
  4394.             FLD     QWORD PTR ES:[SI+40]  ; load a[1,1]
  4395.             FLD     QWORD PTR ES:[SI+72]  ; load a[2,1]
  4396.             FLD     QWORD PTR ES:[SI+104] ; load a[3,1]
  4397.             FINIT                         ; initialize coprocessor
  4398.             FSBP1                         ; set register bank 1
  4399.             FLD     QWORD PTR ES:[SI+16]  ; load a[0,2]
  4400.             FLD     QWORD PTR ES:[SI+48]  ; load a[1,2]
  4401.             FLD     QWORD PTR ES:[SI+80]  ; load a[2,2]
  4402.             FLD     QWORD PTR ES:[SI+112] ; load a[3,2]
  4403.             FLD     QWORD PTR ES:[SI+24]  ; load a[0,3]
  4404.             FLD     QWORD PTR ES:[SI+56]  ; load a[1,3]
  4405.             FLD     QWORD PTR ES:[SI+88]  ; load a[2,3]
  4406.             FLD     QWORD PTR ES:[SI+120] ; load a[3,3]
  4407.  
  4408.                                           ; transformation matrix loaded
  4409.  
  4410.             MOV     AX, F                 ; index of first vector
  4411.             MOV     DX, K                 ; index of last vector
  4412.  
  4413.             MOV     BX, AX                ; index 1st vector to process
  4414.             MOV     CL, 3                 ; component has 8 (2**3) bytes
  4415.             SHL     BX, CL                ; compute offset into arrays
  4416.  
  4417.             FINIT                         ; initialize coprocessor
  4418.             FSBP0                         ; set register bank 0
  4419.  
  4420.   $mat_loop:LES     SI, AddrW             ; addr. of W component array
  4421.             FLD     QWORD PTR ES:[SI+BX]  ; W component current vector
  4422.             LES     SI, AddrZ             ; addr. of Z component array
  4423.             FLD     QWORD PTR ES:[SI+BX]  ; Z component current vector
  4424.             LES     SI, AddrY             ; addr. of Y component array
  4425.             FLD     QWORD PTR ES:[SI+BX]  ; Y component current vector
  4426.             LES     SI, AddrX             ; addr. of X component array
  4427.             FLD     QWORD PTR ES:[SI+BX]  ; X component current vector
  4428.             F4X4                          ; mul 4x4 matrix by 4x1 vector
  4429.             INC     AX                    ; next vector
  4430.             MOV     DI, AX                ; next vector
  4431.             SHL     DI, CL                ; offset of vector into arrays
  4432.  
  4433.             FSTP    QWORD PTR ES:[SI+BX]  ; store X comp. of curr. vect.
  4434.             LES     SI, AddrY             ; address of Y component array
  4435.             FSTP    QWORD PTR ES:[SI+BX]  ; store Y comp. of curr. vect.
  4436.             LES     SI, AddrZ             ; address of Z component array
  4437.             FSTP    QWORD PTR ES:[SI+BX]  ; store Z comp. of curr. vect.
  4438.             LES     SI, AddrW             ; address of W component array
  4439.             FSTP    QWORD PTR ES:[SI+BX]  ; store W comp. of curr. vect.
  4440.  
  4441.             MOV     BX, DI                ; ofs nxt vect. in comp. arrays
  4442.             CMP     AX, DX                ; nxt vector past upper bound?
  4443.             JLE     $mat_loop             ; no, transform next vector
  4444.             FLDCW   [Ctrl87]              ; restore orig 80x87 ctrl word
  4445.  
  4446.             ADD      SP, 2                ; get rid of local variable
  4447.             POP      DS                   ; restore TP data segment
  4448.             POP      BP                   ; restore TP frame pointer
  4449.             RET      24                   ; pop parameters and return
  4450.   IIT_MUL_4x4   ENDP
  4451.  
  4452.   CODE      ENDS
  4453.  
  4454.             END
  4455.  
  4456.   ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
  4457.  
  4458.   {$N+,E+}
  4459.  
  4460.   PROGRAM Trnsform;
  4461.  
  4462.   USES Time;
  4463.  
  4464.   CONST VectorLen = 8190;
  4465.  
  4466.   TYPE  Vector    = ARRAY [0..VectorLen] OF DOUBLE;
  4467.         VectorPtr = ^Vector;
  4468.         Mat4      = ARRAY [1..4, 1..4] OF DOUBLE;
  4469.  
  4470.   VAR   X: VectorPtr;
  4471.         Y: VectorPtr;
  4472.         Z: VectorPtr;
  4473.         W: VectorPtr;
  4474.         T: Mat4;
  4475.         K: INTEGER;
  4476.         L: INTEGER;
  4477.         First: INTEGER;
  4478.         Last:  INTEGER;
  4479.         Start: LONGINT;
  4480.         Elapsed:LONGINT;
  4481.  
  4482.   PROCEDURE MUL_4X4     (X, Y, Z, W: VectorPtr;
  4483.                          VAR T: Mat4; First, Last: INTEGER); EXTERNAL;
  4484.   PROCEDURE IIT_MUL_4X4 (X, Y, Z, W: VectorPtr;
  4485.                          VAR T: Mat4; First, Last: INTEGER); EXTERNAL;
  4486.  
  4487.   {$L M4X4.OBJ}
  4488.  
  4489.   BEGIN
  4490.      WriteLn ('Test8087 = ', Test8087);
  4491.      New (X);
  4492.      New (Y);
  4493.      New (Z);
  4494.      New (W);
  4495.      FOR L := 1 TO VectorLen DO BEGIN
  4496.         X^ [L] := Random;
  4497.         Y^ [L] := Random;
  4498.         Z^ [L] := Random;
  4499.         W^ [L] := Random;
  4500.      END;
  4501.      X^ [0] := 1;
  4502.      Y^ [0] := 1;
  4503.      Z^ [0] := 1;
  4504.      W^ [0] := 1;
  4505.      FOR K := 1 TO 4 DO BEGIN
  4506.         FOR L := 1 TO 4 DO BEGIN
  4507.            T [K, L] := (K-1)*4 + L;
  4508.         END;
  4509.      END;
  4510.      First := 0;
  4511.      Last  := 8190;
  4512.      Start := Clock;
  4513.      MUL_4X4 (X, Y, Z, W, T, First, Last);
  4514.      { IIT_MUL_4X4 (X, Y, Z, W, T, First, Last); }
  4515.      Elapsed := Clock - Start;
  4516.      WriteLn ('Number of vectors: ', Last-First+1);
  4517.      WriteLn ('Time: ', Elapsed, ' ms');
  4518.      WriteLn ('Equivalent to ', (28.0*(Last-First+1)/1e6)/
  4519.               (Elapsed*1e-3):0:4, ' MFLOPS');
  4520.      WriteLn;
  4521.      WriteLn ('Last vector:');
  4522.      WriteLn;
  4523.      WriteLn (X^[Last]);
  4524.      WriteLn (Y^[Last]);
  4525.      WriteLn (Z^[Last]);
  4526.      WriteLn (W^[Last]);
  4527.   END
  4528.